From fb8e08b4462c57a01a416065039aaed5a7e3df75 Mon Sep 17 00:00:00 2001 From: Laura Bobillier Date: Wed, 10 Sep 2025 11:46:15 +0200 Subject: [PATCH] [API-529] Corrected shoulder geometry enum values --- src/cadwork/heel_shoulder_beam_geometry.pyi | 8 +++++--- src/cadwork/shoulder_beam_geometry.pyi | 19 ++++++++++++------- 2 files changed, 17 insertions(+), 10 deletions(-) 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