Options added : --use-element-types and --use-element-hierarchy

This commit is contained in:
Balleux Benjamin
2017-04-19 12:07:03 +02:00
parent 79e1e0ec04
commit ab0e47c55f
3 changed files with 31 additions and 9 deletions
+7 -1
View File
@@ -43,8 +43,14 @@ public:
/// Use material names instead of unique IDs for naming materials.
/// Applicable for OBJ and DAE output.
USE_MATERIAL_NAMES = 1 << (IfcGeom::IteratorSettings::NUM_SETTINGS + 3),
/// Use element types and names instead of unique IDs for naming elements.
/// Applicable for DAE output.
USE_ELEMENT_TYPES = 1 << (IfcGeom::IteratorSettings::NUM_SETTINGS + 4),
/// Order the elements using their IfcBuildingStorey parent
/// Applicable for DAE output
USE_ELEMENT_HIERARCHY = 1 << (IfcGeom::IteratorSettings::NUM_SETTINGS + 5),
/// Number of different setting flags.
NUM_SETTINGS = 3
NUM_SETTINGS = 5
};
SerializerSettings()