|
IntPointSubtract Method (IntPoint, IntPoint)
|
Subtraction operator - subtracts values of two points.
Namespace:
Accord
Assembly:
Accord (in Accord.dll) Version: 3.8.0
Syntax public static IntPoint Subtract(
IntPoint point1,
IntPoint point2
)
Public Shared Function Subtract (
point1 As IntPoint,
point2 As IntPoint
) As IntPoint
Request Example
View SourceParameters
- point1
- Type: AccordIntPoint
Point to subtract from. - point2
- Type: AccordIntPoint
Point to subtract.
Return Value
Type:
IntPointReturns new point which coordinates equal to difference of corresponding
coordinates of specified points.
See Also