|
#1
|
|||
|
|||
viewpoint rotate
hi~
i want viewpoint 360degree rotate at same place... i know 180degree.. view = viz.mainview euler = view.getEuler() view.spinto([0,1,0,euler[0]-180],180) how to rotate 360 degree at same place...(without any key event) (view.spinto([0,1,0,euler[0]-360],180) ----> don't rotate...) Last edited by bionic1; 01-24-2010 at 10:22 PM. |
#2
|
|||
|
|||
You could do this by linking the viewpoint to a group object which is an empty node and then apply a spin action to the group object. After the spin is complete you could disable the link.
Code:
import viz import vizact viz.go() court = viz.add('court.ive') group = viz.addGroup() link = viz.link(group,viz.MainView) spinAction = vizact.spin(0,1,0,45,8) group.runAction(spinAction) |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to track the actual viewpoint | Jerry | Vizard | 3 | 05-25-2016 10:44 AM |
Arrington - Ethernet ViewPoint Client | jaclyn.bill | Vizard | 3 | 10-23-2009 11:43 AM |
Avatar w/ hat cannot look at viewpoint | TrashcanPatrol | Vizard | 5 | 08-19-2008 09:26 AM |
3d viewpoint movement | spacefarer | Vizard | 9 | 07-25-2006 04:37 PM |
VRML Viewpoint error | bstankie | Vizard | 1 | 03-11-2003 03:10 PM |