diff --git a/README.md b/README.md index 79832cc9..283fff47 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,12 @@ Multiply a `Vector2` by a scalar to get a scaled `Vector2`: >>> Vector2(1, 1).scale_by(3) Vector2(3.0, 3.0) + +It is also possible to divide a `Vector2` by a scalar: + + >>> Vector2(3, 3) / 3 + Vector2(1.0, 1.0) + ### Dot Product Multiply a `Vector2` by another `Vector2` to get the dot product.