DrawSphere method
Draw sphere
Implementation
void DrawSphere(
Vector3D centerPos,
num radius,
ColorD color,
) => run(
() => _debugLabels.DrawSphere(centerPos, radius, color),
() => _flat.DrawSphere(
centerPos,
radius.toDouble(),
color,
),
);