Clash detection features

This commit is contained in:
Dion Moult
2024-02-29 17:17:59 +11:00
parent 4e4b8e0de1
commit 23f91c73af
6 changed files with 2222 additions and 2 deletions
+7
View File
@@ -223,7 +223,14 @@
%include "IfcGeomWrapper.i"
%include "IfcParseWrapper.i"
%include "std_vector.i"
namespace std {
%template(float_array_3) array<double, 3>;
%template(FloatVector) vector<float>;
%template(IntVector) std::vector<int>;
%template(DoubleVector) std::vector<double>;
%template(StringVector) std::vector<std::string>;
%template(FloatVectorVector) std::vector<std::vector<float>>;
%template(DoubleVectorVector) std::vector<std::vector<double>>;
}