View Single Post
  #4  
Old 07-19-2013, 10:49 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Are you linking the viewpoint to the tracker? If so, you can apply a postTrans operation on the link so the viewpoint is below the tracker:
Code:
viewLink = viz.link(tracker, viz.MainView)
#move the viewpoint 1 meter below the tracker
viewLink.postTrans([0,-1,0])
Reply With Quote