Accord.Point.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

Addition operator - adds values of two points.
public static operator ( ) : Point
리턴 Point
        public static Point operator +(Point point1, Point point2)
        {
            return new Point(point1.X + point2.X, point1.Y + point2.Y);
        }

Same methods

Point::operator ( ) : bool