Multiply a vector PointF by a scalar.
Syntax

[C#]

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

[Visual Basic]

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

None.

Example

None.