Adds two points.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public static Point operator +(
	Point left,
	Point right
)
Visual Basic (Declaration)
Public Shared Operator + ( _
	left As Point, _
	right As Point _
) As Point
Visual C++
public:
static Point^ operator +(
	Point^ left, 
	Point^ right
)

Parameters

left
Type: ceometric.VectorGeometry..::.Point
A point.
right
Type: ceometric.VectorGeometry..::.Point
A point to add.

Return Value

Returns the sum of two points (which again is a point).

Remarks

Adding two points means adding each coordinate of left to the respective coordinate of right.

See Also