feat: Dot in Eiki's crown

This commit is contained in:
Leni Aniva 2024-11-18 20:54:06 -08:00
parent 077651e708
commit 9109676502
Signed by: aniva
GPG Key ID: 4D9B1C8D10EA4C50
1 changed files with 7 additions and 0 deletions

View File

@ -51,6 +51,13 @@ class Crown(Model):
]) ])
) )
@target(name="dot", kind=TargetKind.DXF)
def profile_dot(self) -> Cq.Sketch:
return (
Cq.Sketch()
.circle(self.margin / 2)
)
@target(name="front", kind=TargetKind.DXF) @target(name="front", kind=TargetKind.DXF)
def profile_front(self) -> Cq.Sketch: def profile_front(self) -> Cq.Sketch:
dx_l = self.facet_width_lower dx_l = self.facet_width_lower