Axiom.Graphics.UVWAddressing.operator C# (CSharp) Méthode

operator() public static méthode

public static operator ( ) : bool
Résultat 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 );
        }