Larger mirror dimensions

This commit is contained in:
Leni Aniva 2025-05-15 13:23:38 -07:00
parent 83d4232ad7
commit 4edad88299
Signed by: aniva
GPG Key ID: D5F96287843E8DFB
1 changed files with 12 additions and 12 deletions

View File

@ -14,8 +14,8 @@ class Mirror(Model):
dimensions have to sit in between that of the aperature on the surface, and dimensions have to sit in between that of the aperature on the surface, and
the outer walls. The width/height here refers to the outer edge's width and height the outer walls. The width/height here refers to the outer edge's width and height
""" """
width: float = 50.0 width: float = 100.0
height: float = 60.0 height: float = 120.0
inner_gap: float = 3.0 inner_gap: float = 3.0
outer_gap: float = 3.0 outer_gap: float = 3.0
@ -23,19 +23,19 @@ class Mirror(Model):
core_thickness: float = 25.4 / 8 core_thickness: float = 25.4 / 8
casing_thickness: float = 25.4 / 8 casing_thickness: float = 25.4 / 8
flange_r0: float = 5.0 flange_r0: float = 8.0
flange_r1: float = 15.0 flange_r1: float = 20.0
flange_y1: float = 12.0 flange_y1: float = 12.0
flange_y2: float = 25.0 flange_y2: float = 25.0
flange_hole_r: float = 8.0 flange_hole_r: float = 8.0
wing_x1: float = 12.0 wing_x1: float = 15.0
wing_x2: float = 20.0 wing_x2: float = 24.0
wing_r1: float = 6.0 wing_r1: float = 10.0
wing_r2: float = 12.0 wing_r2: float = 16.0
tail_r0: float = 5.0 tail_r0: float = 8.0
tail_r1: float = 10.0 tail_r1: float = 13.0
tail_y1: float = 12.0 tail_y1: float = 16.0
tail_y2: float = 25.0 tail_y2: float = 29.0
# Necklace hole # Necklace hole
hole_diam: float = 5.0 hole_diam: float = 5.0