View Single Post
  #3  
Old 09-20-2013, 07:27 AM
ChrisMa ChrisMa is offline
Member
 
Join Date: Sep 2013
Posts: 13
Hello Jeff,

thank your for your reply. First I used your code with 'Tracker0@192.168.10.1'. I thought Tracer0 referes to Vicon Tracker. Finally I tried to Import one Object I'm tracking with Tracker called Flasche (=bottle) instead of Tracker0. Now it works well.

So I have to Import every object I want to use, separately?

Code:

import viz
import vizact
import vizshape

viz.go()


VRPN_SOURCE = 'Flasche@192.168.10.1'
scene = viz.addChild('dojo.osgb')
viz.move([0,-1,-5])

axes = vizshape.addAxes(length=0.5)

vrpn = viz.add('vrpn7.dle')
flasche = vrpn.addTracker(VRPN_SOURCE)
flasche.swapPos([-1,3,-2])

viz.link(flasche,axes)

def showData():
print flasche.getPosition()
print flasche.getEuler()

vizact.ontimer(1,showData)



Thank you very much!

ChrisMa
Reply With Quote