Files
IfcOpenShell/src/ifcgeom_schema_agnostic/profile_helper.h
T
Thomas Krijnen 8f33c2ca9d Missing file
2022-11-14 09:38:51 +01:00

13 lines
300 B
C++

#ifndef PROFILE_HELPER_H
#define PROFILE_HELPER_H
#include <gp_Trsf2d.hxx>
#include <TopoDS_Shape.hxx>
namespace IfcGeom {
namespace util {
bool profile_helper(int numVerts, double* verts, int numFillets, int* filletIndices, double* filletRadii, gp_Trsf2d trsf, TopoDS_Shape& face);
}
}
#endif