tests fixups

Signed-off-by: Nick Cameron <nrc@ncameron.org>
This commit is contained in:
Nick Cameron
2025-05-16 12:51:08 +12:00
parent 5db6564804
commit 7b7d587141
557 changed files with 7143 additions and 15029 deletions

View File

@ -43,7 +43,7 @@ helix(
```kcl
// Create a helix around the Z axis.
helixPath = helix(
angleStart = 0,
angleStart = 0deg,
ccw = true,
revolutions = 5,
length = 10,
@ -66,7 +66,7 @@ helper001 = startSketchOn(XZ)
|> line(end = [0, 10], tag = $edge001)
helixPath = helix(
angleStart = 0,
angleStart = 0deg,
ccw = true,
revolutions = 5,
length = 10,
@ -85,7 +85,7 @@ springSketch = startSketchOn(XY)
```kcl
// Create a helix around a custom axis.
helixPath = helix(
angleStart = 0,
angleStart = 0deg,
ccw = true,
revolutions = 5,
length = 10,
@ -112,7 +112,7 @@ part001 = startSketchOn(XY)
|> extrude(length = 10)
helix(
angleStart = 0,
angleStart = 0deg,
ccw = true,
revolutions = 16,
cylinder = part001,