Add fine angular tolerance for side guards
This commit is contained in:
parent
9d9d59ffeb
commit
bfb4ad6973
|
@ -650,25 +650,25 @@ class Crown(Model):
|
|||
height=cut_h).moved((0,0,-cut_h))
|
||||
return result
|
||||
|
||||
@target(name="side_guard_1")
|
||||
@target(name="side_guard_1", angularTolerance=0.01)
|
||||
def side_guard_1(self) -> Cq.Workplane:
|
||||
return self.side_guard(
|
||||
attach_left=AttachPoint.SLOT,
|
||||
attach_right=AttachPoint.DOVETAIL_IN,
|
||||
)
|
||||
@target(name="side_guard_2")
|
||||
@target(name="side_guard_2", angularTolerance=0.01)
|
||||
def side_guard_2(self) -> Cq.Workplane:
|
||||
return self.side_guard(
|
||||
attach_left=AttachPoint.DOVETAIL_OUT,
|
||||
attach_right=AttachPoint.DOVETAIL_IN,
|
||||
)
|
||||
@target(name="side_guard_3")
|
||||
@target(name="side_guard_3", angularTolerance=0.01)
|
||||
def side_guard_3(self) -> Cq.Workplane:
|
||||
return self.side_guard(
|
||||
attach_left=AttachPoint.DOVETAIL_OUT,
|
||||
attach_right=AttachPoint.DOVETAIL_IN,
|
||||
)
|
||||
@target(name="side_guard_4")
|
||||
@target(name="side_guard_4", angularTolerance=0.01)
|
||||
def side_guard_4(self) -> Cq.Workplane:
|
||||
return self.side_guard(
|
||||
attach_left=AttachPoint.DOVETAIL_OUT,
|
||||
|
|
Loading…
Reference in New Issue