GetWorldToScreenEx function
Implementation
Vector2 GetWorldToScreenEx(
Vector3 position,
Camera3D camera,
int width,
int height,
) => ffi.using(
(arena) => raylib.GetWorldToScreenEx(
arena.vector3(position).ref,
camera.ptr.ref,
width,
height,
).toDart(),
);