|
IntPointAdd Method (IntPoint, Int32)
|
Addition operator - adds scalar to the specified point.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static IntPoint Add(
IntPoint point,
int valueToAdd
)
Public Shared Function Add (
point As IntPoint,
valueToAdd As Integer
) As IntPoint
Request Example
View SourceParameters
- point
- Type: AccordIntPoint
Point to increase coordinates of. - valueToAdd
- Type: SystemInt32
Value to add to coordinates of the specified point.
Return Value
Type:
IntPointReturns new point which coordinates equal to coordinates of
the specified point increased by specified value.
See Also