cosplay: Touhou/Shiki Eiki #7

Open
aniva wants to merge 16 commits from touhou/shiki-eiki into main
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() 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: def assembly(self) -> Cq.Assembly:
front = ( front = (
Cq.Workplane('XY') Cq.Workplane('XY')