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 DoublePoint operator /(
	DoublePoint point,
	double factor
)

Parameters

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

Return Value

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

See Also