Skip to content

Commit

Permalink
Update main.kcl
Browse files Browse the repository at this point in the history
sweep updates on the engine side revealed a mistake I made in the kcl. Fixing...
  • Loading branch information
nicboone8 authored Feb 12, 2025
1 parent c267259 commit 7c2cff6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exhaust-manifold/main.kcl
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ fn primaryTube(n, angle001, length001, length002, length003) {
// Create the cross section of each tube and sweep them
sweepProfile = startSketchOn('XY')
|> circle({
center = [0, 0],
center = [pos001, 0],
radius = primaryTubeDiameter / 2
}, %)
|> hole(circle({
center = [0, 0],
center = [pos001, 0],
radius = primaryTubeDiameter / 2 - wallThickness
}, %), %)
|> sweep(path = sweepPath)
Expand Down

0 comments on commit 7c2cff6

Please sign in to comment.