示例#1
0
 private void Set(CalibrationResult other)
 {
     Result                  = other.Result;
     AverageErrorDegree      = other.AverageErrorDegree;
     AverageErrorDegreeLeft  = other.AverageErrorDegreeLeft;
     AverageErrorDegreeRight = other.AverageErrorDegreeRight;
     Calibpoints             = other.Calibpoints;
 }
示例#2
0
 public CalibrationResult(CalibrationResult other)
 {
     Result                  = other.Result;
     AverageErrorDegree      = other.AverageErrorDegree;
     AverageErrorDegreeLeft  = other.AverageErrorDegreeLeft;
     AverageErrorDegreeRight = other.AverageErrorDegreeRight;
     Calibpoints             = (CalibrationPoint[])other.Calibpoints.Clone();
 }