Accord.Math.Point3.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

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