Hi Michael, as these are always regular shaped 'frames' I can presume there is always a "box" centre. It's good to know theres always a way.
Learnt a lot about manual selections on this one so likely i can already work 50% faster.... Originally selecting those inner verticals with solids in the way was 'fun' as I orbited around the contours. Thanks again - Stefano
--------------------------------------------------------------------------------------------
> Wireframe Shortcut Script:
script:var breps = moi.geometryDatabase.getObjects().getBReps(); var hide = true; for ( var i = 0; i < breps.length; ++i ) { var faces = breps.item(i).getFaces(); if ( i == 0 ) hide = !faces.item(0).hidden; faces.setProperty( 'hidden', hide ); }
Others of interest here:
http://kyticka.webzdarma.cz/3d/moi/#ShadedDisplayMode
--------------------------------------------------------------------------------------------
Will be trying this 'adjacent edge' loop script also...ref Michael post
# 3112.22
script: /* Loop selection */ moi.geometryDatabase.selectLoop();
|