Skip to content

Commit fb8e08b

Browse files
[API-529] Corrected shoulder geometry enum values
1 parent f084b39 commit fb8e08b

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

src/cadwork/heel_shoulder_beam_geometry.pyi

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ class heel_shoulder_beam_geometry(IntEnum):
1010
normal
1111
"""
1212
normal = 0
13-
""""""
14-
straight = 1
15-
""""""
13+
"""NormalHeel
14+
"""
15+
straight = 3
16+
"""StraightHeel
17+
"""
1618

1719
def __int__(self) -> int:
1820
return self.value

src/cadwork/shoulder_beam_geometry.pyi

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,19 @@ class shoulder_beam_geometry(IntEnum):
99
>>> cadwork.shoulder_beam_geometry.bisector
1010
bisector
1111
"""
12+
1213
bisector = 0
13-
""""""
14-
perpendicular_to_strut = 1
15-
""""""
16-
perpendicular_to_counter_part = 2
17-
""""""
18-
birdsmouth = 3
19-
""""""
14+
"""Bisector
15+
"""
16+
birdsmouth = 2
17+
"""PerpBirdmouth
18+
"""
19+
perpendicular_to_strut = 3
20+
"""PerpShoulder
21+
"""
22+
perpendicular_to_counter_part = 4
23+
"""PerpChord
24+
"""
2025

2126
def __int__(self) -> int:
2227
return self.value

0 commit comments

Comments
 (0)