|
DoublePointSubtract Method (DoublePoint, Double)
|
Subtraction operator - subtracts scalar from the specified point.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static DoublePoint Subtract(
DoublePoint point,
double valueToSubtract
)
Public Shared Function Subtract (
point As DoublePoint,
valueToSubtract As Double
) As DoublePoint
Request Example
View SourceParameters
- point
- Type: AccordDoublePoint
Point to decrease coordinates of. - valueToSubtract
- Type: SystemDouble
Value to subtract from coordinates of the specified point.
Return Value
Type:
DoublePointReturns new point which coordinates equal to coordinates of
the specified point decreased by specified value.
See Also