KCL: Sweep stdlib fn now uses keyword args (#5300)
Before:
```
|> sweep({ path = myPath }, %)
```
After:
```
|> sweep(path = myPath)
```
This commit is contained in:
@ -226,7 +226,7 @@ pipeHole = startSketchOn('XY')
|
||||
sweepSketch = startSketchOn('XY')
|
||||
|> circle({ center = [0, 0], radius = 2 }, %)
|
||||
|> hole(pipeHole, %)
|
||||
|> sweep({ path = sweepPath }, %)
|
||||
|> sweep(path = sweepPath)
|
||||
|> appearance({
|
||||
color = "#ff0000",
|
||||
metalness = 50,
|
||||
|
||||
File diff suppressed because one or more lines are too long
6412
docs/kcl/std.json
6412
docs/kcl/std.json
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user