示例#1
0
        public bool Equals(BaseVector3 other)
        {
            if (ReferenceEquals(null, other)) return false;

            return ReferenceEquals(this, other) || other.Vector.Equals(Vector);
        }
示例#2
0
 public static BaseVector3 Transform(BaseVector3 vector, Matrix matrix)
 {
     return Vector3.Transform(vector.Vector, matrix);
 }