Addition operator - adds values of two points.

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

Syntax

C#
public static IntPoint operator +(
	IntPoint p1,
	IntPoint p2
)

Parameters

p1
Type: AForge..::.IntPoint
First point for addition.
p2
Type: AForge..::.IntPoint
Second point for addition.

Return Value

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

See Also