Beispiel #1
0
 public CalibrationPoint()
 {
     Coordinates         = Point2D.Zero;
     MeanEstimatedCoords = Point2D.Zero;
     Accuracy            = new Accuracy();
     MeanError           = new MeanError();
     StandardDeviation   = new StandardDeviation();
 }
 public CalibrationPoint()
 {
     Coordinates = Point2D.Zero;
     MeanEstimatedCoords = Point2D.Zero;
     Accuracy = new Accuracy();
     MeanError = new MeanError();
     StandardDeviation = new StandardDeviation();
 }
Beispiel #3
0
        public override int GetHashCode()
        {
            int hash = 157;

            hash = hash * 953 + State.GetHashCode();
            hash = hash * 953 + Coordinates.GetHashCode();
            hash = hash * 953 + MeanEstimatedCoords.GetHashCode();
            hash = hash * 953 + Accuracy.GetHashCode();
            hash = hash * 953 + MeanError.GetHashCode();
            hash = hash * 953 + StandardDeviation.GetHashCode();
            return(hash);
        }