diff --git a/src/cadwork/heel_shoulder_beam_geometry.pyi b/src/cadwork/heel_shoulder_beam_geometry.pyi index a0789d9..d07fca2 100644 --- a/src/cadwork/heel_shoulder_beam_geometry.pyi +++ b/src/cadwork/heel_shoulder_beam_geometry.pyi @@ -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 diff --git a/src/cadwork/shoulder_beam_geometry.pyi b/src/cadwork/shoulder_beam_geometry.pyi index 9f31c6f..28deb23 100644 --- a/src/cadwork/shoulder_beam_geometry.pyi +++ b/src/cadwork/shoulder_beam_geometry.pyi @@ -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