* codemirror side Signed-off-by: Jess Frazelle <github@jessfraz.com> * codemirror actions Signed-off-by: Jess Frazelle <github@jessfraz.com> * codemirror actions Signed-off-by: Jess Frazelle <github@jessfraz.com> * code mirror now shows lint suggestions Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix hanging params with test Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates for signature help Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix clone Signed-off-by: Jess Frazelle <github@jessfraz.com> * add tests Signed-off-by: Jess Frazelle <github@jessfraz.com> * add tests Signed-off-by: Jess Frazelle <github@jessfraz.com> * clippy Signed-off-by: Jess Frazelle <github@jessfraz.com> * clippy Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * Update packages/codemirror-lsp-client/src/plugin/lsp.ts Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com> * z-index Signed-off-by: Jess Frazelle <github@jessfraz.com> * playwright tests Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: graphite-app[bot] <96075541+graphite-app[bot]@users.noreply.github.com>
		
			
				
	
	
		
			30 lines
		
	
	
		
			813 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			813 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
---
 | 
						|
source: kcl-lib/src/simulation_tests.rs
 | 
						|
description: Result of unparsing clone_w_fillets.kcl
 | 
						|
---
 | 
						|
width = 20
 | 
						|
length = 10
 | 
						|
thickness = 1
 | 
						|
filletRadius = 2
 | 
						|
 | 
						|
mountingPlateSketch = startSketchOn(XY)
 | 
						|
  |> startProfile(at = [-width / 2, -length / 2])
 | 
						|
  |> line(endAbsolute = [width / 2, -length / 2], tag = $edge1)
 | 
						|
  |> line(endAbsolute = [width / 2, length / 2], tag = $edge2)
 | 
						|
  |> line(endAbsolute = [-width / 2, length / 2], tag = $edge3)
 | 
						|
  |> close(tag = $edge4)
 | 
						|
 | 
						|
mountingPlate = extrude(mountingPlateSketch, length = thickness)
 | 
						|
  |> fillet(
 | 
						|
       radius = filletRadius,
 | 
						|
       tags = [
 | 
						|
         getNextAdjacentEdge(edge1),
 | 
						|
         getNextAdjacentEdge(edge2),
 | 
						|
         getNextAdjacentEdge(edge3),
 | 
						|
         getNextAdjacentEdge(edge4)
 | 
						|
       ],
 | 
						|
     )
 | 
						|
 | 
						|
mountingPlate2 = clone(mountingPlate)
 | 
						|
  |> translate(z = 20)
 |