GetWorldToScreenEx method
Implementation
Vector2D GetWorldToScreenEx(
Vector3D position,
CameraD camera,
num width,
num height,
) => run(
() => 'GetWorldToScreenEx($position, $camera, $width, $height)',
() => rl.Core.GetWorldToScreenEx(
_refVector31(position).ref,
_refCamera3D1(camera).ref,
width.toInt(),
height.toInt(),
).toD(),
);