Accord.Point.Divide C# (CSharp) Метод

Divide() публичный статический Метод

Division operator - divides coordinates of the specified point by scalar value.
public static Divide ( Point point, float factor ) : Point
point Point Point to divide coordinates of.
factor float Division factor.
Результат Point
        public static Point Divide(Point point, float factor)
        {
            return new Point(point.X / factor, point.Y / factor);
        }