Update sample code and tests

This commit is contained in:
Adam Chalmers
2025-02-04 09:57:10 -06:00
parent 60e636471b
commit dae7d96be3
46 changed files with 342 additions and 342 deletions

View File

@ -8,7 +8,7 @@ profile001 = startProfileAt([57.81, 250.51], sketch001)
|> line(end = [83.37, -34.61], tag = $seg01)
|> line(end = [19.66, -116.4])
|> line(end = [-221.8, -41.69])
|> line(endAbsolute = [profileStartX(%), profileStartY(%)])
|> line(endAbsolute = profileStart(%))
|> close()
extrude001 = extrude(profile001, length = 200)
sketch002 = startSketchOn('XZ')
@ -16,7 +16,7 @@ sketch002 = startSketchOn('XZ')
|> xLine(173.71, %)
|> line(end = [-22.12, -94.4])
|> xLine(-156.98, %)
|> line(endAbsolute = [profileStartX(%), profileStartY(%)])
|> line(endAbsolute = profileStart(%))
|> close()
extrude002 = extrude(sketch002, length = 50)
sketch003 = startSketchOn('XY')
@ -30,7 +30,7 @@ sketch003 = startSketchOn('XY')
segAng(rectangleSegmentA001),
-segLen(rectangleSegmentA001)
], %, $rectangleSegmentC001)
|> line(endAbsolute = [profileStartX(%), profileStartY(%)])
|> line(endAbsolute = profileStart(%))
|> close()
extrude003 = extrude(sketch003, length = 20)
`