Py5Vector.mag
Contents
Py5Vector.mag¶
The vector’s magnitude.
Examples¶
1 2 3 4 5 6 7 8 9 | v1 = py5.Py5Vector(3, 4)
print("magnitude =", v1.mag)
# magnitude = 5.0
v1.mag = 1.0
print("magnitude =", v1.mag)
# magnitude = 1.0
|
Description¶
The vector’s magnitude. Setting this property to a non-negative number will adjust the vector’s magnitude to that value. Negative values will result in an error.
Updated on January 16, 2022 16:51:21pm UTC