From db09744428377eed794db551890893d5e998c120 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 4 Dec 2025 18:36:48 +0500 Subject: [PATCH] Temporarily disable setting `point3` tag to fix build (4fc2f623c) Since `point3` don't currently have `tag` member. Ping @aothms --- src/ifcgeom/mapping/IfcOpenCrossProfileDef.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ifcgeom/mapping/IfcOpenCrossProfileDef.cpp b/src/ifcgeom/mapping/IfcOpenCrossProfileDef.cpp index d3083a23e7..334be1324a 100644 --- a/src/ifcgeom/mapping/IfcOpenCrossProfileDef.cpp +++ b/src/ifcgeom/mapping/IfcOpenCrossProfileDef.cpp @@ -50,7 +50,7 @@ taxonomy::ptr mapping::map_impl(const IfcSchema::IfcOpenCrossProfileDef* inst) { if (tags.has_value() && !tags.get().empty()) { tag = tags.get()[0]; } - start->tag = tag; + // start->tag = tag; auto widths = inst->Widths(); auto angles = inst->Slopes(); // these are actually angles, but the attribute is called Slopes @@ -79,7 +79,8 @@ taxonomy::ptr mapping::map_impl(const IfcSchema::IfcOpenCrossProfileDef* inst) { tag = tags.get()[i+1]; } - points.push_back(taxonomy::make(x, y, z, tag)); + // points.push_back(taxonomy::make(x, y, z, tag)); + points.push_back(taxonomy::make(x, y, z)); } auto mapped = polygon_from_points(points);