Addition operator - adds values of two points.

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

Syntax

C#
public static Point operator +(
	Point point1,
	Point point2
)

Parameters

point1
Type: AForge..::.Point
First point for addition.
point2
Type: AForge..::.Point
Second point for addition.

Return Value

Returns new point which coordinates equal to sum of corresponding coordinates of specified points.

See Also