View Single Post
  #2  
Old 03-20-2014, 01:16 AM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
If you don't modify the pitch, how much error is there in the height value when you run the following?

Code:
import viz
import vizact
viz.go()

SENSOR_HEIGHT = 0.71
HEAD = 0
myHead = vrpn.addTracker( 'Tracker0@localhost', HEAD)

def printHeight():
	print myHead.getPosition()[1] + SENSOR_HEIGHT
	
vizact.ontimer(1,printHeight)
Reply With Quote