* Automatic fixing of deprecations and use non-quoted default planes by default Signed-off-by: Nick Cameron <nrc@ncameron.org> * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 * A snapshot a day keeps the bugs away! 📷🐛 --------- Signed-off-by: Nick Cameron <nrc@ncameron.org> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
		
			
				
	
	
		
			25 lines
		
	
	
		
			639 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			639 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
const sketch001 = startSketchOn(XZ)
 | 
						|
  |> startProfileAt([75.8, 317.2], %)
 | 
						|
  |> angledLine([0, 268.43], %, $rectangleSegmentA001)
 | 
						|
  |> angledLine([
 | 
						|
       segAng(rectangleSegmentA001) - 90,
 | 
						|
       217.26
 | 
						|
     ], %, $seg01)
 | 
						|
  |> angledLine([
 | 
						|
       segAng(rectangleSegmentA001),
 | 
						|
       -segLen(rectangleSegmentA001)
 | 
						|
     ], %, $yo)
 | 
						|
  |> line(endAbsolute = [profileStartX(%), profileStartY(%)], tag = $seg02)
 | 
						|
  |> close()
 | 
						|
const extrude001 = extrude(sketch001, length = 100)
 | 
						|
const chamf = chamfer(
 | 
						|
  extrude001,
 | 
						|
  length = 30,
 | 
						|
  tags = [
 | 
						|
    seg01,
 | 
						|
    getNextAdjacentEdge(yo),
 | 
						|
    getNextAdjacentEdge(seg02),
 | 
						|
    getOppositeEdge(seg01)
 | 
						|
  ]
 | 
						|
)
 |