Surface Modeling Basics and Troubleshooting

 From:  Michael Gibson
4751.18 In reply to 4751.17 
Hi Steve,

> There is a script you can assign to a hot key that shows open
> edges on a joined surface. I use this but I can't remember
> where I got it from.

Yeah, that's particularly useful - you probably got it from Petr's page here:
http://kyticka.webzdarma.cz/3d/moi/#SelectNaked

The script is:

script: /* Show naked edges */ 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 );


You paste that in to the "Command" part of a new shortcut key - I've got it hooked up to my N key so I can push N to show the naked edges.

- Michael