From e597ce996b53d0e1625752bdd575cc59c5d03de0 Mon Sep 17 00:00:00 2001 From: Christopher Lackner Date: Mon, 17 Jan 2022 16:03:40 +0100 Subject: [PATCH] [occ] also prolongate names of solids and faces in extrude --- libsrc/occ/python_occ_shapes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/occ/python_occ_shapes.cpp b/libsrc/occ/python_occ_shapes.cpp index b29fa0b2..0e1a8053 100644 --- a/libsrc/occ/python_occ_shapes.cpp +++ b/libsrc/occ/python_occ_shapes.cpp @@ -912,7 +912,7 @@ DLL_HEADER void ExportNgOCCShapes(py::module &m) } BRepPrimAPI_MakePrism builder(shape, h*edir, true); - for (auto typ : { TopAbs_EDGE, TopAbs_VERTEX }) + for (auto typ : { TopAbs_SOLID, TopAbs_FACE, TopAbs_EDGE, TopAbs_VERTEX }) for (TopExp_Explorer e(shape, typ); e.More(); e.Next()) { auto prop = OCCGeometry::global_shape_properties[e.Current().TShape()];