Files
modeling-app/rust/kcl-lib/tests/tangent_to_3_point_arc/unparsed.snap
Adam Chalmers ffbe20b586 Kwargs: startProfileAt (#6424)
Previous:

```
startProfileAt([x, y], %)
startProfileAt([x, y], sketch001)
```

New:
```
startProfile(%, at = [x, y])
startProfile(sketch001, at = [x, y])
```
2025-04-25 21:01:35 +00:00

10 lines
374 B
Plaintext

---
source: kcl-lib/src/simulation_tests.rs
description: Result of unparsing tangent_to_3_point_arc.kcl
---
sketch001 = startSketchOn(XZ)
profile001 = startProfile(sketch001, at = [100.0, 0.0])
|> line(end = [0.0, 120.0])
|> arc(interiorAbsolute = [300.0, 100.0], endAbsolute = [200.0, -100.0], tag = $seg01)
|> angledLine(angle = tangentToEnd(seg01), length = 100.0)