cosplay: Touhou/Shiki Eiki #7

Merged
aniva merged 25 commits from touhou/shiki-eiki into main 2025-04-08 23:01:05 -07:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 317b187d43 - Show all commits

View File

@ -341,6 +341,16 @@ class Crown(Model):
)
return sketch.assemble()
def side_guard(self) -> Cq.Workplane:
rb = self.base_circ / (2 * math.pi)
rt = self.tilt_circ / (2 * math.pi)
outer = Cq.Solid.makeCone(
radius1=rb,
radius2=rt,
height=self.height,
)
return outer
def assembly(self) -> Cq.Assembly:
front = (
Cq.Workplane('XY')