Accord.Math.Point3.operator C# (CSharp) Method

operator() public static method

Implements the operator !=.
public static operator ( ) : bool
return bool
        public static bool operator ==(Point3 a, Point3 b)
        {
            return a.coordinates == b.coordinates;
        }