* 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>
21 lines
691 B
Plaintext
21 lines
691 B
Plaintext
---
|
|
source: kcl-lib/src/simulation_tests.rs
|
|
description: Result of unparsing artifact_graph_example_code1.kcl
|
|
---
|
|
sketch001 = startSketchOn(XY)
|
|
|> startProfileAt([-5, -5], %)
|
|
|> line(end = [0, 10])
|
|
|> line(end = [10.55, 0], tag = $seg01)
|
|
|> line(end = [0, -10], tag = $seg02)
|
|
|> line(endAbsolute = [profileStartX(%), profileStartY(%)])
|
|
|> close()
|
|
extrude001 = extrude(sketch001, length = -10)
|
|
|> fillet(radius = 5, tags = [seg01])
|
|
sketch002 = startSketchOn(extrude001, seg02)
|
|
|> startProfileAt([-2, -6], %)
|
|
|> line(end = [2, 3])
|
|
|> line(end = [2, -3])
|
|
|> line(endAbsolute = [profileStartX(%), profileStartY(%)])
|
|
|> close()
|
|
extrude002 = extrude(sketch002, length = 5)
|