Axiom.Graphics.UVWAddressing.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator ==( UVWAddressing a, UVWAddressing b )
        {
            if ( Object.ReferenceEquals( a, b ) )
                return true;

            return ( a.U == b.U ) && ( a.V == b.V ) && ( a.W == b.W );
        }