AForge.IntPoint.Divide C# (CSharp) Метод

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

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