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