View Single Post
  #2  
Old 02-07-2011, 08:02 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
If you are losing tracking, either the marker is obscured or by some object or you are outside the tracking area. Perhaps the cameras can be oriented differently to cover the edges of the room better. You can take a look at the tracking space by adding the camera visualization post-process plug-in.

It looks like you are using the correct command for scaling the movement. My guess is there's a problem somewhere else in the script. Does the following work for you to scale the movement?
Code:
import viz
viz.go()

vrpn = viz.add('vrpn7.dle')
tracker = vrpn.addTracker('PPT0@hostname',0)

headlink = viz.link(tracker, viz.MainView)
headlink.postScale([15,1,15])

court = viz.addChild('court.ive')
Reply With Quote