File tree Expand file tree Collapse file tree 2 files changed +17
-10
lines changed
Expand file tree Collapse file tree 2 files changed +17
-10
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments