Microsoft.Xna.Framework.Vector4.Equals C# (CSharp) 메소드

Equals() 공개 메소드

public Equals ( Vector4 other ) : bool
other Vector4
리턴 bool
        public bool Equals(Vector4 other)
        {
            return this.X == other.X && this.Y == other.Y && this.Z == other.Z && this.W == other.W;
        }

Same methods

Vector4::Equals ( object obj ) : bool