2022-11-14 09:38:51 +01:00
|
|
|
#ifndef LAYERSET_H
|
|
|
|
|
#define LAYERSET_H
|
|
|
|
|
|
2023-03-21 20:15:01 +01:00
|
|
|
#include "../../ConversionResult.h"
|
2022-11-14 09:38:51 +01:00
|
|
|
|
|
|
|
|
#include <Geom_Surface.hxx>
|
2023-03-22 11:47:00 +01:00
|
|
|
#include <TopoDS_Shape.hxx>
|
2022-11-14 09:38:51 +01:00
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
namespace IfcGeom {
|
|
|
|
|
namespace util {
|
2023-07-27 16:42:06 +08:00
|
|
|
bool apply_layerset(const ConversionResults&, const std::vector<Handle_Geom_Surface>&, const std::vector<ifcopenshell::geometry::taxonomy::style::ptr>&, ConversionResults&, double tol);
|
2022-11-14 09:38:51 +01:00
|
|
|
|
2023-07-27 16:42:06 +08:00
|
|
|
bool apply_folded_layerset(const ConversionResults&, const std::vector< std::vector<Handle_Geom_Surface> >&, const std::vector<ifcopenshell::geometry::taxonomy::style::ptr>&, ConversionResults&, double tol);
|
2022-11-14 09:38:51 +01:00
|
|
|
|
|
|
|
|
bool split_solid_by_surface(const TopoDS_Shape&, const Handle_Geom_Surface&, TopoDS_Shape&, TopoDS_Shape&, double tol);
|
|
|
|
|
|
|
|
|
|
bool split_solid_by_shell(const TopoDS_Shape&, const TopoDS_Shape& s, TopoDS_Shape&, TopoDS_Shape&, double tol);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|