View Single Post
  #2  
Old 09-20-2004, 01:13 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

The viz.translate function will only translate the viewpoint relatively. To translate the viewpoint to an absolute location, use the translate command of the main viewpoint:
Code:
view = viz.get(viz.MAIN_VIEWPOINT)
view.translate(-0.1439, -.0095, -4.4603)
Look in the <viewpoint> section of the command reference for more information.
Reply With Quote