Beispiel #1
0
        public bool Equals(Vector3S other)
        {
            if (other == null)
            {
                return(false);
            }

            return(X == other.X && Y == other.Y && Z == other.Z);
        }
Beispiel #2
0
 protected Vector3S(Vector3S other)
 {
     X = other.X;
     Y = other.Y;
     Z = other.Z;
 }