Option to disable boolean results (sets result to first operand)

This commit is contained in:
Thomas Krijnen
2020-11-24 16:58:05 +01:00
parent dd4902be18
commit b1c4481795
7 changed files with 35 additions and 2 deletions
+3 -1
View File
@@ -92,8 +92,10 @@ namespace IfcGeom
LAYERSET_FIRST = 1 << 18,
/// Adds arrow heads to edge segments to signify edge direction
EDGE_ARROWS = 1 << 19,
/// Disables the evaluation of IfcBooleanResult and simply returns FirstOperand
DISABLE_BOOLEAN_RESULT = 1 << 20,
/// Number of different setting flags.
NUM_SETTINGS = 19
NUM_SETTINGS = 20
};
/// Used to store logical OR combination of setting flags.
typedef unsigned SettingField;