View Single Post
  #4  
Old 04-18-2007, 03:04 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
You can apply a scaling factor to the data when you link it to an object. For example, if you were using the patriot for head tracking you would do the following to scale the movement by a factor of 3:
Code:
patriot = viz.add('patriot.dls')
link = viz.link(patriot,viz.MainView)
link.postScale([3,3,3],target=viz.LINK_POS_OP) #Scale movement by factor of 3
Reply With Quote