Py5Vector.z
Contents
Py5Vector.z¶
The vector’s z dimension value.
Examples¶
1 2 3 4 5 6 7 8 9 10 11 | v = py5.Py5Vector(1, 2, 3)
print(v.x, v.y, v.z)
# 1.0, 2.0, 3.0
v.x = 0
v.y += 10
v.z += 100
print(v.x, v.y, v.z)
# 0.0, 12.0, 103.0
|
Description¶
The vector’s z dimension value. This is the vector’s 3rd dimension, and is only applicable to 3D and 4D vectors.
Updated on January 16, 2022 16:51:21pm UTC