Skip to content

Commit

Permalink
Merge pull request #121 from wood-galaxy/arch-roof-3
Browse files Browse the repository at this point in the history
Arch Roof : Fix BOPCheck failed
  • Loading branch information
yorikvanhavre committed Mar 17, 2016
2 parents e6f0346 + 010121d commit cf713cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Mod/Arch/ArchRoof.py
Expand Up @@ -565,7 +565,9 @@ def execute(self,obj):
if not DraftGeomUtils.isNull(pl):
self.sub.Placement = pl
## BaseVolume
base = Part.makeCompound(self.shps)
base = self.shps.pop()
for s in self.shps :
base = base.fuse(s)
base = self.processSubShapes(obj,base)
self.applyShape(obj,base,pl)
elif base :
Expand Down

0 comments on commit cf713cf

Please sign in to comment.