mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-23 17:36:29 +00:00
Merge branch 'v0.7.0' of https://github.com/IfcOpenShell/IfcOpenShell into pr-daily-builds
This commit is contained in:
@@ -19,6 +19,7 @@
|
|||||||
import bpy
|
import bpy
|
||||||
import ifcopenshell
|
import ifcopenshell
|
||||||
import ifcopenshell.api
|
import ifcopenshell.api
|
||||||
|
import blenderbim.tool as tool
|
||||||
|
|
||||||
|
|
||||||
class LibraryGenerator:
|
class LibraryGenerator:
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -4599,6 +4599,13 @@ namespace {
|
|||||||
|
|
||||||
if (outer_wire.IsNull() || !it2.Value().IsSame(outer_wire)) {
|
if (outer_wire.IsNull() || !it2.Value().IsSame(outer_wire)) {
|
||||||
wires.push_back(TopoDS::Wire(it2.Value()));
|
wires.push_back(TopoDS::Wire(it2.Value()));
|
||||||
|
|
||||||
|
if (shape_index == 0 && num_wires > 0) {
|
||||||
|
// An inner wire on the first operand face: reverse, because
|
||||||
|
// MakeFace expects inner boundaries to be added as bounded
|
||||||
|
// areas.
|
||||||
|
wires.back().Reverse();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user