mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-24 20:50:02 +00:00
adding exception for OCCT 7.3
This commit is contained in:
committed by
Thomas Krijnen
parent
2d59f9d53a
commit
127bcaf96e
@@ -2437,7 +2437,11 @@ bool IfcGeom::Kernel::split_solid_by_shell(const TopoDS_Shape& input, const Topo
|
|||||||
}
|
}
|
||||||
apply_tolerance(solid, getValue(GV_PRECISION));
|
apply_tolerance(solid, getValue(GV_PRECISION));
|
||||||
|
|
||||||
|
#if OCC_VERSION_HEX >= 0x70300
|
||||||
TopTools_ListOfShape shapes;
|
TopTools_ListOfShape shapes;
|
||||||
|
#else
|
||||||
|
BOPCol_ListOfShape shapes;
|
||||||
|
#endif
|
||||||
shapes.Append(input);
|
shapes.Append(input);
|
||||||
shapes.Append(solid);
|
shapes.Append(solid);
|
||||||
BOPAlgo_PaveFiller filler(new NCollection_IncAllocator); // TODO: Does this need to be freed?
|
BOPAlgo_PaveFiller filler(new NCollection_IncAllocator); // TODO: Does this need to be freed?
|
||||||
|
|||||||
Reference in New Issue
Block a user