Hello all, Michael,
Is there any way/setting to make the selection of solid objects appear clearly in wireframe view, somehow ? Wireframe is really useful to see through things (of course !), but it only supporting curve selection coloring is quite a roadblock, as it forces one to constantly switch from wire to solid and back for booleans for instance.
Here is the same selection, shown in solid and wireframe :
Similarly, here are two solids for a boolean operation. They show up this way in wireframe mode, regardless of one, the other, both, or none being selected - which makes the operation impossible to perform (or rather : it is indeed possible to perform it - just impossible to know if the objects are properly selected) :
I understand that selecting solids in wireframe mode is probably a whole can of worms, since a cylinder for instance is merely suggested in that mode since there is no silhouetting. But I am open to any suggestion really. I am aware of the "show hidden lines of selected object" option, but that doesn't solve the issue either since it requires selection for objects to show up. Perhaps if all objects were shown as dashed lines (regardless of selection) it could help.
FWIW the command I use for Wireframe mode toggle is :
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 ); }
|