Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/cadwork/heel_shoulder_beam_geometry.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ class heel_shoulder_beam_geometry(IntEnum):
normal
"""
normal = 0
""""""
straight = 1
""""""
"""NormalHeel
"""
straight = 3
"""StraightHeel
"""

def __int__(self) -> int:
return self.value
Expand Down
19 changes: 12 additions & 7 deletions src/cadwork/shoulder_beam_geometry.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,19 @@ class shoulder_beam_geometry(IntEnum):
>>> cadwork.shoulder_beam_geometry.bisector
bisector
"""

bisector = 0
""""""
perpendicular_to_strut = 1
""""""
perpendicular_to_counter_part = 2
""""""
birdsmouth = 3
""""""
"""Bisector
"""
birdsmouth = 2
"""PerpBirdmouth
"""
perpendicular_to_strut = 3
"""PerpShoulder
"""
perpendicular_to_counter_part = 4
"""PerpChord
"""

def __int__(self) -> int:
return self.value
Expand Down
Loading