Subtraction operator - subtracts scalar from the specified point.

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 valueToSubtract
)

Parameters

point
Type: AForge..::.Point
Point to decrease coordinates of.
valueToSubtract
Type: System..::.Single
Value to subtract from coordinates of the specified point.

Return Value

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

See Also