MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / subshapes

Function subshapes

src/ifcgeom/kernels/opencascade/layerset.cpp:38–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36namespace {
37
38 void subshapes(const TopoDS_Shape& in, std::list<TopoDS_Shape>& out) {
39 TopoDS_Iterator sit(in);
40 for (; sit.More(); sit.Next()) {
41 out.push_back(sit.Value());
42 }
43 }
44
45#if OCC_VERSION_HEX >= 0x70200
46 bool split(const TopoDS_Shape& input, const TopTools_ListOfShape& operands, double eps, std::vector<TopoDS_Shape>& slices) {

Callers 1

splitFunction · 0.85

Calls 3

MoreMethod · 0.80
push_backMethod · 0.80
NextMethod · 0.45

Tested by

no test coverage detected