Boolean Union

 From:  Michael Gibson
2798.6 In reply to 2798.5 
Hi Indy,

> Are there any hints on how to easily find the missing faces in general?

I just found yours by just doing a quick inspection of your shape...

But it is possible to set up a keyboard shortcut to highlight naked (unattached) edges, which can help to show you where the disconnected holes and empty spaces are in a model.

To do that, go to Options / Shortcut keys and add in a new entry, and for the command, paste in the following (it is all one long line):

script:var gd = moi.geometryDatabase; gd.deselectAll(); var breps = gd.getObjects().getBreps(); for ( var i = 0; i < breps.length; ++i ) breps.item(i).getNakedEdges().setProperty( 'selected', true );

Then when you hit that key, the edges that are not attached to anything should highlight.> And before I forget... any indications about when V2 will be out? ;-)

No firm date set yet, but hopefully not a whole lot longer.

- Michael