|
IntPointAdd Method (IntPoint, IntPoint)
|
Addition operator - adds values of two points.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static IntPoint Add(
IntPoint point1,
IntPoint point2
)
Public Shared Function Add (
point1 As IntPoint,
point2 As IntPoint
) As IntPoint
Request Example
View SourceParameters
- point1
- Type: AccordIntPoint
First point for addition. - point2
- Type: AccordIntPoint
Second point for addition.
Return Value
Type:
IntPointReturns new point which coordinates equal to sum of corresponding
coordinates of specified points.
See Also