option to write boolean operands to disk for debugging

This commit is contained in:
Thomas Krijnen
2021-12-19 21:57:47 +01:00
parent 03d4782cb7
commit bd008bdefe
6 changed files with 44 additions and 1 deletions
+3 -1
View File
@@ -111,8 +111,10 @@ namespace IfcGeom
/// Strictly use the tolerance from the IFC model. Typically this value is
/// increased 10-fold to have more reliable boolean subtraction results.
STRICT_TOLERANCE = 1 << 22,
/// Write boolean operands to file in current directory for debugging purposes
DEBUG_BOOLEAN = 1 << 23,
/// Number of different setting flags.
NUM_SETTINGS = 23,
NUM_SETTINGS = 24,
};
IteratorSettings()