DrawGrid method

void DrawGrid(
  1. num slices,
  2. num spacing
)

Draw a grid (centered at (0, 0, 0))

Implementation

void DrawGrid(
  num slices,
  num spacing,
) => run(
  () => _debugLabels.DrawGrid(slices, spacing),
  () => _flat.DrawGrid(
    slices.toInt(),
    spacing.toDouble(),
  ),
);