Move tests into simulation (#4487)

Replace wasm-lib integration tests with KCL simulation tests.
This commit is contained in:
Adam Chalmers
2024-11-18 16:20:32 -06:00
committed by GitHub
parent 79e06b3a00
commit 34f019305b
207 changed files with 360969 additions and 233 deletions

View File

@ -0,0 +1,19 @@
exampleSketch = startSketchOn('XZ')
|> startProfileAt([0, 0], %)
|> line([0, 2], %)
|> line([3, 1], %)
|> line([0, -4], %)
|> close(%)
|> extrude(1, %)
pattn1 = patternLinear3d({
axis: [1, 0, 0],
instances: 7,
distance: 6
}, exampleSketch)
pattn2 = patternLinear3d({
axis: [0, 0, 1],
distance: 1,
instances: 7
}, pattn1)