View Single Post
  #3  
Old 12-06-2010, 05:13 PM
Jeff Jeff is offline
WorldViz Team Member
 
Join Date: Aug 2008
Posts: 2,471
Try using intersense.dle. The reference page in the Vizard help gives all the commands available for this plug-in. The following code connects to 2 stations of an IS-900 on COM1:
Code:
isense = viz.add('intersense.dle')

station1 = isense.addTracker(port=1,station=1)
station2 = isense.addTracker(port=1,station=2)
It sounds like you may have intererence in the room if the orientation is changing without moving the sensor.
Reply With Quote