Loft Andrei Samardac
All  1-2  3-5

Previous
Next
 From:  Frenchy Pilou (PILOU)
6263.3 
Some Andrei scripts are here! bottom message 10
http://moi3d.com/forum/messages.php?webtag=MOI&msg=6058.6
  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:  rickky
6263.4 
Thanks
  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:  Andrei Samardac
6263.5 
I use this script in my tutorials:

script: /* Expand selection over same styles and loft */ var objects = moi.geometryDatabase.getObjects();var styles = new Array();for ( var i = 0; i < objects.length; ++i ) { var obj = objects.item(i); if ( obj.selected ) styles[obj.styleIndex] = true; } for ( var i = 0; i < objects.length; ++i ) { var obj = objects.item(i); if ( styles[obj.styleIndex] ) obj.selected = true; }; moi.command.execCommand( 'loft' );

This script works this way:
- It selects all with the same style
- Make loft.

Just make all curves you want the same style with this script:
script: /* Asign style*/ moi.ui.propertiesPanel.editStyleIndex( moi.geometryDatabase.addStyle().index );

EDITED: 10 Nov 2013 by ANDREI SAMARDAC

  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-5