Skip to content

Commit

Permalink
KCL: Convert chamfer + fillet to be keyword arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchalmers committed Feb 14, 2025
1 parent 8dd2571 commit 53805fe
Show file tree
Hide file tree
Showing 109 changed files with 50,126 additions and 43,028 deletions.
21 changes: 10 additions & 11 deletions docs/kcl/chamfer.md

Large diffs are not rendered by default.

22 changes: 12 additions & 10 deletions docs/kcl/fillet.md

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions docs/kcl/getNextAdjacentEdge.md

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions docs/kcl/getOppositeEdge.md

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions docs/kcl/getPreviousAdjacentEdge.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/kcl/helix.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ helixPath = helix(
length = 10,
radius = 5,
axis = {
custom = {
axis = [0, 0, 1.0],
origin = [0, 0.25, 0]
}
},
custom = {
axis = [0, 0, 1.0],
origin = [0, 0.25, 0]
}
},
)

// Create a spring by sweeping around the helix path.
Expand Down
9 changes: 6 additions & 3 deletions docs/kcl/int.md

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/kcl/loft.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ circleSketch1 = startSketchOn(offsetPlane('XY', offset = 150))

loft(
[
squareSketch,
circleSketch0,
circleSketch1
],
squareSketch,
circleSketch0,
circleSketch1
],
baseCurveIndex = 0,
bezApproximateRational = false,
tolerance = 0.000001,
Expand Down
Loading

0 comments on commit 53805fe

Please sign in to comment.