コード例 #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;
 }