PointFAddition Operator (PointF, PointF) |
Operator to return the addition of 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 add
Return Value
Type:
PointFA new instance of a PointF with the X and Y equal to the sum of the two point's X and Y co-ordinates, respectively
See Also