CheckCollisionBoxSphere method
Check collision between box and sphere
Implementation
bool CheckCollisionBoxSphere(
BoundingBoxD box,
Vector3D center,
num radius,
) => run(
() => _debugLabels.CheckCollisionBoxSphere(box, center, radius),
() => _flat.CheckCollisionBoxSphere(
box,
center,
radius.toDouble(),
),
);