Multiply a vector Point by a scalar.
Syntax

[C#]

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

[Visual Basic]

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

None.

Example

None.