PointFSubtraction Operator (PointF, PointF) |
Operator to return the difference between two points as a
PointF
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static PointF operator -(
PointF point1,
PointF point2
)
Public Shared Operator - (
point1 As PointF,
point2 As PointF
) As PointF
static let inline (-)
point1 : PointF *
point2 : PointF : PointF
Parameters
- point1
- Type: Eto.DrawingPointF
Base point value - point2
- Type: Eto.DrawingPointF
Point to subtract
Return Value
Type:
PointFA new instance of a PointF with the X and Y equal to the difference of the X and Y co-ordinates, respectively
See Also