Skip to content

Commit

Permalink
Fix: DispatchError: extrudeLinear 0 methods found
Browse files Browse the repository at this point in the history
  • Loading branch information
bosd committed Jul 16, 2023
1 parent dd706f1 commit ecd0faf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dactyl_manuform.py
Original file line number Diff line number Diff line change
Expand Up @@ -4261,7 +4261,7 @@ def baseplate(wedge_angle=None, side='right'):
if wedge_angle is not None:
cq.Workplane('XY').add(cq.Solid.revolve(outerWire, innerWires, angleDegrees, axisStart, axisEnd))
else:
inner_shape = cq.Workplane('XY').add(cq.Solid.extrudeLinear(outerWire=inner_wire, innerWires=[], vecNormal=cq.Vector(0, 0, base_thickness)))
inner_shape = cq.Workplane('XY').add(cq.Solid.extrudeLinear(inner_wire, [], cq.Vector(0, 0, base_thickness)))
inner_shape = translate(inner_shape, (0, 0, -base_rim_thickness))

holes = []
Expand Down

0 comments on commit ecd0faf

Please sign in to comment.