Request for the next beta !!

 From:  Michael Gibson
6051.2 In reply to 6051.1 
Hi Marco,

> If possible to see the polysurface open borders join and not solid (type rhinoceros).

It's possible to see "naked edges" in the current version by setting up a script on a shortcut key. To set it up, go to Options > Shortcut keys and push the Add button to add in a new entry at the top of the list. In the key column put in N and for the command column paste in the following:

script: /* Highlight 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 );

Then when you push N the naked edges in your model will get highlighted so you can see them.> And set the tollerance unit type rhinoceros for nurbs operations ?


> And set the tollerance unit type rhinoceros for nurbs operations ?

You can currently set the unit type under Options > General > "Unit system". If you want to set the default units at program start up, push the "Unit options" button on that same dialog and there's an option for that there.

- Michael