Accord.Math.Vector4.GetHashCode C# (CSharp) Method

GetHashCode() public method

Returns the hashcode for this instance.
public GetHashCode ( ) : int
return int
        public override int GetHashCode( )
        {
            return X.GetHashCode( ) + Y.GetHashCode( ) + Z.GetHashCode( ) + W.GetHashCode( );
        }