Divide a vector Size by a scalar.
Syntax

[C#]

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

[Visual Basic]

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

None.

Example

None.