Files
IfcOpenShell/src/ifcgeom/profile_helper.h
T

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

13 lines
300 B
C++
Raw Normal View History

2022-11-14 09:38:51 +01:00
#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