Point.Addition Operator

Returns a Point whose coordinates are the sum of the respective coordinates of two other points.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static Point operator +(
	Point point1,
	Point point2
)

Parameters

point1  Point
A Point structure for the first point.
point2  Point
A Point structure for the second point.

Return Value

Point
A Point structure.

Remarks

The static Add(Point, Point) method is equivalent to this operator. It can be used in languages that do not support operator overloading.

See Also