NewTOAPIA.GL.float3.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
        public static bool operator !=(float3 a, float3 b)
        {
            return a.x != b.x || a.y != b.y || a.z != b.z ? true : false;
        }

Same methods

float3::operator ( ) : float
float3::operator ( ) : float3