mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-17 02:49:12 +00:00
11 lines
376 B
C++
11 lines
376 B
C++
|
|
#include "ConversionResult.h"
|
||
|
|
#include "IfcGeomRepresentation.h"
|
||
|
|
|
||
|
|
IfcGeom::Representation::Triangulation * IfcGeom::ConversionResultShape::Triangulate(const IfcGeom::IteratorSettings & settings) const
|
||
|
|
{
|
||
|
|
auto t = IfcGeom::Representation::Triangulation::empty(settings);
|
||
|
|
static ifcopenshell::geometry::taxonomy::matrix4 iden;
|
||
|
|
Triangulate(settings, iden, t, -1);
|
||
|
|
return t;
|
||
|
|
}
|