DrawSphereEx method
Draw sphere with extended parameters
Implementation
void DrawSphereEx(
Vector3D centerPos,
num radius,
num rings,
num slices,
ColorD color,
) => run(
() => _debugLabels.DrawSphereEx(centerPos, radius, rings, slices, color),
() => _flat.DrawSphereEx(
centerPos,
radius.toDouble(),
rings.toInt(),
slices.toInt(),
color,
),
);