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