|
PointAddition Operator (Point, Single)
|
Addition operator - adds scalar to the specified point.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static Point operator +(
Point point,
float valueToAdd
)
Public Shared Operator + (
point As Point,
valueToAdd As Single
) As Point
Request Example
View SourceParameters
- point
- Type: AccordPoint
Point to increase coordinates of. - valueToAdd
- Type: SystemSingle
Value to add to coordinates of the specified point.
Return Value
Type:
PointReturns new point which coordinates equal to coordinates of
the specified point increased by specified value.
See Also