Returns the minimum X and Y components of two points
Namespace:
Eto.Drawing
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public static PointF Min(
PointF point1,
PointF point2
)
Public Shared Function Min (
point1 As PointF,
point2 As PointF
) As PointF
static member Min :
point1 : PointF *
point2 : PointF -> PointF
Parameters
- point1
- Type: Eto.DrawingPointF
First point - point2
- Type: Eto.DrawingPointF
Second point
Return Value
Type:
PointFA new point with the minimum X and Y values of the two points
See Also