Exemplo n.º 1
0
 public TrackerEvent()
 {
     Device = "";
     this.Sensor = 0;
     this.Position = new Vector3();
     this.Orientation = new Quaternion();
 }
Exemplo n.º 2
0
 public TrackerEvent(string device, Vector3 position, Quaternion orientation)
 {
     Device = device;
     this.Position = position;
     this.Orientation = orientation;
 }