AriDEVParser.Util.Vector3.Equals C# (CSharp) Method

Equals() public method

public Equals ( Vector3 other ) : bool
other Vector3
return bool
        public bool Equals(Vector3 other)
        {
            return other.X == X && other.Y == Y && other.Z == Z;
        }

Same methods

Vector3::Equals ( object obj ) : bool