public CalibrationPoint() { Coordinates = Point2D.Zero; MeanEstimatedCoords = Point2D.Zero; Accuracy = new Accuracy(); MeanError = new MeanError(); StandardDeviation = new StandardDeviation(); }
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); }