The Brain Amplfier - 50's comp entry

 From:  PaQ
2297.7 In reply to 2297.2 
Hi Michael,

<< If you still get a sluggish display with the mesh angle turned up to 50 and "add detail to inflections" unchecked, then the other thing that you can do is to hide the edges on pieces that you are not going to be actively working on>>

Well that's what I do most of the time, using this script :

script:var breps = moi.geometryDatabase.getObjects().getBReps(); var hide = true; for ( var i = 0; i < breps.length; ++i ) { var edges = breps.item(i).getEdges(); if ( i == 0 ) hide = !edges.item(0).hidden; edges.setProperty( 'hidden', hide ); }

The problem is with this script

- I'm hidding/showing edges from the entire scene, would be cool if it's possible to hidde edges only on selected models
- Everytime I manipulate the object (move, scale, mirror), edges are automatically on again, so it would be nice if the 'hidded' state is concerved.

Now I can imagine this workflow will be obsolete with the layers incoming too.