Select objects
All  1-2  3-6

Previous
Next
 From:  Michael Gibson
9658.3 In reply to 9658.1 
And a couple other ones here:
http://kyticka.webzdarma.cz/3d/moi/#SelectTiny

- Michael
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  pixelhouse
9658.4 In reply to 9658.2 
Hi Pilou,

thank you for your response :)
I have copied the script and add a short cut, but only curves will be selected.
There are some lines in the code with "curves" :) I need to select objects, no curves. I'm not confirm with scripting.

This script from Petr's MOI page seems to do this :)

script: /* Select objects smaller than the given size */ var size = 1.0; var objs = moi.geometryDatabase.getObjects(); for ( var i = 0; i < objs.length; ++i ) { var obj = objs.item(i); var bbox = obj.getBoundingBox(); if ( bbox.diagonalLength < size ) obj.selected = true; }

Thanks a lot :)
Das Leben ist ein Spaziergang. Manchmal bei beschissenem Wetter ;)
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
Next
 From:  pixelhouse
9658.5 In reply to 9658.3 
Thank you Michael,

this script works fine :)
Das Leben ist ein Spaziergang. Manchmal bei beschissenem Wetter ;)
  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged

Previous
 From:  Frenchy Pilou (PILOU)
9658.6 In reply to 9658.4 
Seems you right...

EDITED: 21 Jan 2020 by PILOU

  Reply Reply More Options
Post Options
Reply as PM Reply as PM
Print Print
Mark as unread Mark as unread
Relationship Relationship
IP Logged
 

Reply to All Reply to All

 

 
 
Show messages: All  1-2  3-6