Files
modeling-app/rust/kcl-lib/tests/tan_arc_x_line/unparsed.snap
Nick Cameron e8feb0309b Automatic fixing of deprecations and use non-quoted default planes by default (#5902)
* 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>
2025-03-21 09:39:12 +00:00

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)