예제 #1
0
 public EyeData(EyeData other)
     : this(other.Validity, other)
 {
 }
예제 #2
0
 public SingleEyeGazeData(EyeData other, DateTimeOffset timestamp)
     : base(other)
 {
     Timestamp = timestamp;
 }
예제 #3
0
 public GazeData(EyeData leftEye, EyeData rightEye, DateTimeOffset timestamp)
 {
     LeftEye   = leftEye;
     RightEye  = rightEye;
     Timestamp = timestamp;
 }