Untrim

 From:  Michael Gibson
3545.2 In reply to 3545.1 
Hi Danny, try setting up the following on a keyboard shortcut:

script: /* Untrim the selected surface */ var gd = moi.geometryDatabase; srfs = gd.getSelectedObjects().getSingleFaceBReps(); gd.deselectAll(); for ( var i = 0; i < srfs.length; ++i ) srfs.item(i).getEdges().setProperty( 'selected', true ); moi.command.execCommand( 'delete' );


To use it, select some individual surfaces (that are not joined to any other surfaces), and hit that keyboard shortcut.

It's the equivalent of selecting all the edges of those surfaces and doing delete.

- Michael