|
IntPointSubtract Method (IntPoint, Int32)
|
Subtraction operator - subtracts scalar from the specified point.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static IntPoint Subtract(
IntPoint point,
int valueToSubtract
)
Public Shared Function Subtract (
point As IntPoint,
valueToSubtract As Integer
) As IntPoint
Request Example
View SourceParameters
- point
- Type: AccordIntPoint
Point to decrease coordinates of. - valueToSubtract
- Type: SystemInt32
Value to subtract from coordinates of the specified point.
Return Value
Type:
IntPointReturns new point which coordinates equal to coordinates of
the specified point decreased by specified value.
See Also