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