* 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>
24 lines
564 B
Plaintext
24 lines
564 B
Plaintext
---
|
|
source: kcl-lib/src/simulation_tests.rs
|
|
description: Result of unparsing tan_arc_x_line.kcl
|
|
---
|
|
startX = 0
|
|
startY = 0
|
|
angleOffset = 135
|
|
r = 1
|
|
angleStart = 110
|
|
|
|
startSketchOn(XY)
|
|
|> startProfileAt([startX, startY], %)
|
|
|> angledLine({ angle = angleStart, length = .000001 }, %)
|
|
|> tangentialArc({ offset = angleOffset, radius = r }, %, $arc1)
|
|
|> tangentialArc({
|
|
offset = angleOffset,
|
|
radius = 0.5 * r
|
|
}, %, $arc2)
|
|
|> tangentialArc({
|
|
offset = -angleOffset,
|
|
radius = 0.5 * r
|
|
}, %, $arc3)
|
|
|> xLine(endAbsolute = 1)
|