Files
IfcOpenShell/src/ifcgeom/ConversionResult.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
3.2 KiB
C++
Raw Normal View History

2021-11-05 16:54:16 +01:00
/********************************************************************************
* *
* This file is part of IfcOpenShell. *
* *
* IfcOpenShell is free software: you can redistribute it and/or modify *
* it under the terms of the Lesser GNU General Public License as published by *
* the Free Software Foundation, either version 3.0 of the License, or *
* (at your option) any later version. *
* *
* IfcOpenShell is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* Lesser GNU General Public License for more details. *
* *
* You should have received a copy of the Lesser GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
* *
********************************************************************************/
#ifndef IFCSHAPELIST_H
#define IFCSHAPELIST_H
2022-11-14 09:23:59 +01:00
#include "../ifcgeom_schema_agnostic/IfcGeomRenderStyles.h"
#include <gp_GTrsf.hxx>
#include <TopoDS_Shape.hxx>
2022-11-14 09:23:59 +01:00
#include <vector>
2013-05-13 06:40:30 +00:00
namespace IfcGeom {
2022-11-14 09:23:59 +01:00
2016-07-11 21:36:12 +03:00
class IFC_GEOM_API IfcRepresentationShapeItem {
2013-05-13 06:40:30 +00:00
private:
2018-12-12 16:26:49 +01:00
int id;
2013-05-13 06:40:30 +00:00
gp_GTrsf placement;
TopoDS_Shape shape;
2021-10-08 15:38:46 +02:00
std::shared_ptr<const SurfaceStyle> style;
2013-05-13 06:40:30 +00:00
public:
2021-10-08 15:38:46 +02:00
IfcRepresentationShapeItem(int id, const gp_GTrsf& placement, const TopoDS_Shape& shape, std::shared_ptr<const SurfaceStyle> style)
2018-12-10 11:33:54 +01:00
: id(id), placement(placement), shape(shape), style(style) {}
IfcRepresentationShapeItem(int id, const gp_GTrsf& placement, const TopoDS_Shape& shape)
: id(id), placement(placement), shape(shape), style(0) {}
2021-10-08 15:38:46 +02:00
IfcRepresentationShapeItem(int id, const TopoDS_Shape& shape, std::shared_ptr<const SurfaceStyle> style)
2018-12-10 11:33:54 +01:00
: id(id), shape(shape), style(style) {}
IfcRepresentationShapeItem(int id, const TopoDS_Shape& shape)
: id(id), shape(shape), style(0) {}
void append(const gp_GTrsf& trsf) { placement.Multiply(trsf); }
void prepend(const gp_GTrsf& trsf) { placement.PreMultiply(trsf); }
2013-05-13 06:40:30 +00:00
const TopoDS_Shape& Shape() const { return shape; }
const gp_GTrsf& Placement() const { return placement; }
2021-10-08 15:38:46 +02:00
bool hasStyle() const { return !!style; }
2013-05-13 06:40:30 +00:00
const SurfaceStyle& Style() const { return *style; }
2021-10-08 15:38:46 +02:00
const std::shared_ptr<const SurfaceStyle> StylePtr() const { return style; }
void setStyle(std::shared_ptr<const SurfaceStyle> newStyle) { style = newStyle; }
2018-12-10 11:33:54 +01:00
int ItemId() const { return id; }
2013-05-13 06:40:30 +00:00
};
2022-11-14 09:23:59 +01:00
2013-05-13 06:40:30 +00:00
typedef std::vector<IfcRepresentationShapeItem> IfcRepresentationShapeItems;
2022-11-14 09:23:59 +01:00
namespace util {
bool flatten_shape_list(const IfcGeom::IfcRepresentationShapeItems& shapes, TopoDS_Shape& result, bool fuse, double tol);
}
}
#endif