Top 5 Features list for V3 !

 From:  shayno
3628.331 In reply to 3628.12 
There is a great script to toggle between 3 different settings that will cycle between 5 10 and 25 then back to 5 you can change them yourself , for quick detail adjustment. just copy into the command line

script: /* Toggle mesh angle */ var newang, ang = moi.view.meshAngle; if ( ang == 5 ) newang = 10; else if ( ang == 10 ) newang = 25; else newang = 5; moi.view.meshAngle = newang; var sidepane = moi.ui.getUIPanel( 'moi://ui/SidePane.htm' ); var endsection = sidepane.document.getElementById('MiddleBody').nextSibling; if ( endsection.lastChild.id != 'angval' ) endsection.insertAdjacentHTML( 'beforeEnd', '' ); endsection.lastChild.innerText = newang;

cheers
shayne