View Single Post
  #1  
Old 12-19-2011, 10:55 AM
ttasci ttasci is offline
Member
 
Join Date: Dec 2011
Posts: 1
VRPN client for WorldViz PPT

Hi all,

I want to connect WorldViz PPT from a different PC over VRPN. When I use Vizard I can get the tracked values. But when I try using a C# client to connect it doesn't work.

I use vrpnnet.dll and try to connect WorldViz PPT like:

Using vrpn
....
TrackerRemote tracker = new TrackerRemote("PPT0@134.103.176.150:3883");
tracker.PositionChanged += new TrackerChangeEventHandler(PositionChanged);
while (true)
{
tracker.Update();
}


Has anybody have a working client application to connect WorldViz PPT and get tracked values?
Reply With Quote