eclaté
All  1-6  7-11

Previous
Next
 From:  Frenchy Pilou (PILOU)
341.7 In reply to 341.6 
J'ai un peu de mal :)

Une explosion différente sur les 3 axes ?
ça il n'y a pas!

Sinon sur les 3 axes avec la même distance
il suffit de faire une règle de 3 entre une valeur d'échelle qui est le facteur utilisé et une valeur de distance voulue!

Si c'est encore autre chose il faudrait poster une image! :)
  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:  Frenchy Pilou (PILOU)
341.8 
ou cela ?

By Michael
The viewing angle of the 3D view is possible to set by a script, so you could set up a keyboard shortcut that would set the view to a particular angle. You could have a few different keys set up to do some different presets if you want...

The way you do it is to go to Options / Shortcut keys, then add in a new one, for the key put in whatever key you want and for the command put in this:
code:

script:var vp = moi.ui.mainWindow.viewpanel.getViewport('3D'); vp.upDownAngle = 30.0; vp.leftRightAngle=60.0;


Set Isometric:
code:

script:var vp = moi.ui.mainWindow.viewpanel.getViewport('3D'); vp.projection = 'Parallel'; vp.setAngles( 90 - (Math.asin(Math.tan(30 * Math.PI/180)) * 180/Math.PI), 45 );


Set Dimetric:
code:

script:var vp = moi.ui.mainWindow.viewpanel.getViewport('3D'); vp.projection = 'Parallel'; var as13 = Math.asin(1/3); vp.setAngles( 90 - (Math.asin(Math.tan(as13)) * 180/Math.PI), as13 * 180/Math.PI );


Return to Perspective view:
code:

script:var vp = moi.ui.mainWindow.viewpanel.getViewport('3D'); vp.projection = 'Perspective';

EDITED: 24 Jul 2013 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

Previous
Next
 From:  alexxx_95
341.9 
Merci pilou, je voulais effectivement eclater le modele de la meme valeur mauis dans chaque axe pour que chacue pieces soient bien visibles.
  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:  Frenchy Pilou (PILOU)
341.10 In reply to 341.9 
C'est ce que fait la fonction!
Il suffit de placer le point origine à la bonne place
En général le centre de gravité, le centre de la boîte de sélection ou tout autre point selon désidérata!
---
Pilou
Is beautiful that please without concept!
My Gallery
  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)
341.11 
Une petite image d'exemple Avant / Après pour voir cette explosion sur 2 axes que ne ferait la fonction?
  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-6  7-11