About py5
Getting Started
Tutorials
How To...
Reference
Developer Information
The vector’s y dimension value.
v = py5.Py5Vector(1, 2) print(v.x, v.y) # 1.0, 2.0 v.x = 0 v.y += 10 print(v.x, v.y) # 0.0, 12.0
The vector’s y dimension value. This is the vector’s 2nd dimension.
Updated on March 06, 2023 02:49:26am UTC