Files
modeling-app/rust/kcl-lib/tests/revolve_about_edge/input.kcl
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

7 lines
250 B
Plaintext

sketch001 = startSketchOn('XY')
|> startProfile(at = [-25, 25])
|> yLine(length = -50, tag = $rectangleSegmentB001)
sketch002 = startSketchOn('XY')
|> circle(center = [-50, 0], radius = 10)
|> revolve(angle = 90, axis = rectangleSegmentB001)