From 2b3035ec02917feb9a20dff2be6ce30a689d723d Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Sun, 21 Jul 2024 11:56:02 +0200 Subject: [PATCH] Lookup styles on (arbitrarily) more taxonomy kinds --- src/ifcgeom/mapping/mapping.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcgeom/mapping/mapping.h b/src/ifcgeom/mapping/mapping.h index 39bc014f3b..1111101bb6 100644 --- a/src/ifcgeom/mapping/mapping.h +++ b/src/ifcgeom/mapping/mapping.h @@ -49,7 +49,7 @@ namespace geometry { try { if (inst->as() && !inst->as() && /* @todo */ - (item->kind() == taxonomy::SOLID || item->kind() == taxonomy::SHELL || item->kind() == taxonomy::COLLECTION || item->kind() == taxonomy::EXTRUSION) + (item->kind() == taxonomy::SOLID || item->kind() == taxonomy::SHELL || item->kind() == taxonomy::COLLECTION || item->kind() == taxonomy::EXTRUSION || item->kind() == taxonomy::LOFT || item->kind() == taxonomy::BOOLEAN_RESULT || item->kind() == taxonomy::REVOLVE || item->kind() == taxonomy::SWEEP_ALONG_CURVE) ) { auto style = find_style(inst->as()); if (style) {