View Single Post
  #2  
Old 05-10-2009, 05:35 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Instead of using the link you could use a timer and then set the orientation of the viewpoint with your yaw and pitch values from the two trackers.
Code:
def updateView():
	#Get your yaw and pitch values
	viz.MainView.setEuler([yaw, pitch, roll])

vizact.ontimer(0, updateView)
What are you using for trackers?
Reply With Quote