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