From cc501496b160e246bb079b6e1b3a2ceeb5235fd7 Mon Sep 17 00:00:00 2001 From: Matti Eiden Date: Sun, 9 Apr 2023 13:32:26 +0300 Subject: [PATCH] Update Shape.geomType __doc__ The description was probably based on CQ1 implementation --- cadquery/occ_impl/shapes.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/cadquery/occ_impl/shapes.py b/cadquery/occ_impl/shapes.py index 6acaf8fa0..b0628ebbe 100644 --- a/cadquery/occ_impl/shapes.py +++ b/cadquery/occ_impl/shapes.py @@ -545,8 +545,10 @@ def geomType(self) -> Geoms: The return values depend on the type of the shape: | Vertex: always 'Vertex' - | Edge: LINE, ARC, CIRCLE, SPLINE - | Face: PLANE, SPHERE, CONE + | Edge: LINE, CIRCLE, ELLIPSE, HYPERBOLA, PARABOLA, BEZIER, + | BSPLINE, OFFSET, OTHER + | Face: PLANE, CYLINDER, CONE, SPHERE, TORUS, BEZIER, BSPLINE, + | REVOLUTION, EXTRUSION, OFFSET, OTHER | Solid: 'Solid' | Shell: 'Shell' | Compound: 'Compound'