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