Files
modeling-app/rust/kcl-lib/tests/multi_transform/unparsed.snap
Jonathan Tran f8ca6ad746 BREAKING: Change polygon to keyword args (#6385)
* Change polygon to keyword args

* Update docs

* Update generated output

* Update docs to mention the default for inscribed

* Appease clippy

* Remove tag parameter

* Update docs since removing tag

* Remove inscribed from autocomplete snippet since the default is true
2025-04-21 18:29:32 +00:00

21 lines
456 B
Plaintext

---
source: kcl-lib/src/simulation_tests.rs
description: Result of unparsing multi_transform.kcl
---
fn transform(i) {
return [
{ translate = [30 * i, 0, 0] },
{ rotation = { angle = 45 * i } }
]
}
startSketchOn(XY)
|> startProfileAt([0, 0], %)
|> polygon(
radius = 10,
numSides = 4,
center = [0, 0],
inscribed = false,
)
|> extrude(length = 4)
|> patternTransform(instances = 3, transform = transform)