|
DoublePointAdd Method (DoublePoint, Double)
|
Addition operator - adds scalar to the specified point.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static DoublePoint Add(
DoublePoint point,
double valueToAdd
)
Public Shared Function Add (
point As DoublePoint,
valueToAdd As Double
) As DoublePoint
Request Example
View SourceParameters
- point
- Type: AccordDoublePoint
Point to increase coordinates of. - valueToAdd
- Type: SystemDouble
Value to add to coordinates of the specified point.
Return Value
Type:
DoublePointReturns new point which coordinates equal to coordinates of
the specified point increased by specified value.
See Also