예제 #1
0
 public Coordinate4(Coordinate4 <T> other)
 {
     if (other == null)
     {
         throw new ArgumentNullException();
     }
     this.X = other.X;
     this.Y = other.Y;
     this.Z = other.Z;
     this.M = other.M;
 }
예제 #2
0
 public bool Equals(Coordinate4 <T> other)
 {
     return(this.X.Equals(other.X) && this.Y.Equals(other.Y) && this.Z.Equals(other.Z) && this.M.Equals(other.M));
 }