|
PointAddition Operator (Point, Point)
|
Addition operator - adds values of two points.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static Point operator +(
Point point1,
Point point2
)
Public Shared Operator + (
point1 As Point,
point2 As Point
) As Point
Request Example
View SourceParameters
- point1
- Type: AccordPoint
First point for addition. - point2
- Type: AccordPoint
Second point for addition.
Return Value
Type:
PointReturns new point which coordinates equal to sum of corresponding
coordinates of specified points.
See Also