KCL: Sweep stdlib fn now uses keyword args (#5300)

Before:
```
|> sweep({ path = myPath }, %)
```

After:
```
|> sweep(path = myPath)
```
This commit is contained in:
Adam Chalmers
2025-02-07 12:35:04 -06:00
committed by GitHub
parent f20fc5b467
commit 30b1dae38a
13 changed files with 4730 additions and 1793 deletions

View File

@ -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

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long