Reinstate IfcAlignment example

This commit is contained in:
Thomas Krijnen
2026-01-07 18:15:23 +01:00
parent f2f4d626a5
commit 088a6b7204
2 changed files with 545 additions and 394 deletions
+7
View File
@@ -376,6 +376,13 @@ class IFC_PARSE_API IfcHierarchyHelper : public IfcParse::IfcFile {
auto t = create<T>();
t.set_attribute_value(0, std::vector<double>{x, y});
return t;
}
template <typename T, typename U>
T addValue(U v) {
auto measure = create<T>();
measure.set_attribute_value(0, v);
return measure;
}
template <class T>