Move more KCL executor tests into simulation tests (#4540)

This commit is contained in:
Adam Chalmers
2024-11-21 18:33:02 -06:00
committed by GitHub
parent 455fb49fb6
commit 56ef859bb3
38 changed files with 77959 additions and 36 deletions

View File

@ -0,0 +1,13 @@
fn box = (h, l, w) => {
myBox = startSketchOn('XY')
|> startProfileAt([0, 0], %)
|> line([0, l], %)
|> line([w, 0], %)
|> line([0, -l], %)
|> close(%)
|> extrude(h, %)
return myBox
}
fnBox = box(3, 6, 10)