CheckCollisionBoxSphere method
Implementation
bool CheckCollisionBoxSphere(
BoundingBoxD box,
Vector3D center,
num radius,
) => run(
() => 'CheckCollisionBoxSphere($box, $center, $radius)',
() => rl.Core.CheckCollisionBoxSphere(
_refBoundingBox1(box).ref,
_refVector31(center).ref,
radius.toDouble(),
),
);