scripts
All  1-3  4-7

Previous
Next
 From:  Michael Gibson
6460.4 In reply to 6460.3 
Hi Ron,

> If you don't mind, what would you say are the most "gotta have" scripts to add to MoI?

I'd say it's that select naked edges one you already put in, and then the only one that I use very regularly is one for inverting the selection:

script: /*Invert selection*/ moi.geometryDatabase.invertSelection();

- 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:  DannyT (DANTAS)
6460.5 In reply to 6460.3 
Hi Ron,

I can see you're doing some product design I always use these;

Measure distance: http://kyticka.webzdarma.cz/3d/moi/#MeasureDistance
Measure angle: http://moi3d.com/forum/index.php?webtag=MOI&msg=5390.3

Cheers
~Danny~
  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:  coi (MARCO)
6460.6 In reply to 6460.4 
hi ron!

..all time favourite has to be..

MaximizeViewport – switches viewport under the current mouse cursor location between respective split and top(bottom)/front(back)/right(left)/3D view.

quote:
script:if ( moi.ui.mainWindow.viewpanel.mode != 'split' ) { moi.ui.mainWindow.viewpanel.mode = 'split' } else { var viewport = moi.ui.getViewportUnderMouse(); if ( viewport ) viewport.viewpanel.mode = viewport.name; }


..followed by those 3 toggles

ToggleGridSnap:
quote:
script:moi.drawingAids.gridSnap = !moi.drawingAids.gridSnap;


ToogleStraightSnap:
quote:
script:moi.drawingAids.straightSnap = !moi.drawingAids.straightSnap;


ToogleObjectSnap:
quote:
script:moi.drawingAids.objectSnap = !moi.drawingAids.objectSnap;



more workflow specific for going in/out 2D applications:

quote:
script: /*! Copy AI format to clipboard */ moi.geometryDatabase.copyToClipboardAI();

quote:
script: /*! Copy PDF format to clipboard */ moi.geometryDatabase.copyToClipboardPDF();



~
marco
  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:  Ronamodeler (RON_A)
6460.7 
Thanks everyone! They all look like very useful suggestions.
Ron
  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-3  4-7