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()];