Clash detection features

This commit is contained in:
Dion Moult
2024-02-29 17:17:59 +11:00
committed by Thomas Krijnen
parent bed03bf83c
commit c7fd42f2cf
7 changed files with 2221 additions and 3 deletions
+7
View File
@@ -203,7 +203,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>>;
}