From fb8e08b4462c57a01a416065039aaed5a7e3df75 Mon Sep 17 00:00:00 2001 From: Laura Bobillier Date: Wed, 10 Sep 2025 11:46:15 +0200 Subject: [PATCH 1/2] [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 From 1788cafc9555eb5146ee94a61be3e964b497d2f1 Mon Sep 17 00:00:00 2001 From: Laura Bobillier Date: Fri, 26 Sep 2025 07:46:52 +0200 Subject: [PATCH 2/2] Updated the documentation version to 32.298.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3801c22..6ac64a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cwapi3d" -version = "32.297.0" +version = "32.298.0" authors = [{ name = "Cadwork", email = "it@cadwork.ca" }] requires-python = ">= 3.12" description = 'Python bindings for CwAPI3D'