Division operator - divides coordinates of the specified point by scalar value.

Namespace:  AForge
Assembly:  AForge (in AForge.dll) Version: 2.2.5.0 (2.2.5.0)

Syntax

C#
public static Point operator /(
	Point point,
	float factor
)

Parameters

point
Type: AForge..::.Point
Point to divide coordinates of.
factor
Type: System..::.Single
Division factor.

Return Value

Returns new point which coordinates equal to coordinates of the specified point divided by specified value.

See Also