5 lines
107 B
Python
5 lines
107 B
Python
from ._raylib_cffi import ffi
|
|
|
|
def Vector3(x, y, z):
|
|
return ffi.new("struct Vector3 *", [x, y, z])[0]
|
|
|