Divide a vector PointF by a scalar.
Syntax

[C#]

static PointF operator / (PointF a, double b);

[Visual Basic]

Shared Function Operator / (a As PointF, b As Double) As PointF
Params
Name Description
a The PointF for division.
b Scalar that the components of the point should be divided by.
return A PointF containing the result.
Notes

None.

Example

None.