KCL: Migrate hole to kwargs (#6382)
Previously: `|> hole(circle(radius = 2, center = p), %)` Now: `|> subtract2d(tool = circle(radius = 2, center = p))`
This commit is contained in:
@ -33,7 +33,7 @@ circles = startSketchOn(XY)
|
||||
// Create the base of the flange and add the mounting holes
|
||||
flangeBase = startSketchOn(XY)
|
||||
|> circle(center = [0, 0], radius = baseDia / 2)
|
||||
|> hole(circles, %)
|
||||
|> subtract2d(tool = circles)
|
||||
|> extrude(length = baseThickness)
|
||||
|
||||
// Create the extrusion on the top of the flange base
|
||||
|
||||
Reference in New Issue
Block a user