Hi Pilou,
> PS With the Browser does it possible to select only open
> curves (after the planar automatic function)
No, not currently. I do have some ideas for making additional kinds
of "filters" to allow for things like that.
But it is possible to select all open curves by use of a keyboard shortcut
script, put the following on a shortcut key for that:
code: script:var curves = moi.geometryDatabase.getObjects().getCurves(); for ( var i = 0; i < curves.length; ++i ) if ( !curves.item(i).isClosed ) curves.item(i).selected = true;
> And there is not inverse selection inside the Browser? (Because I
> have found how see only the surface :)
It's possible to deselect the objects for a browser item by holding
down Ctrl and clicking on the browser item's text.
Also right-clicking on a browser item's text will do an
"isolate selection", where that item becomes the only selected
item and everything else is deselected. This can be useful if you
want to set one item as the only selected object with a single click.
- Michael
|