public bool Equals(BaseVector3 other) { if (ReferenceEquals(null, other)) return false; return ReferenceEquals(this, other) || other.Vector.Equals(Vector); }
public static BaseVector3 Transform(BaseVector3 vector, Matrix matrix) { return Vector3.Transform(vector.Vector, matrix); }