GenImageChecked method

ImageD GenImageChecked(
  1. num width,
  2. num height,
  3. num checksX,
  4. num checksY,
  5. ColorD col1,
  6. ColorD col2,
)

Generate image: checked

Implementation

ImageD GenImageChecked(
  num width,
  num height,
  num checksX,
  num checksY,
  ColorD col1,
  ColorD col2,
) => run(
  () => _debugLabels.GenImageChecked(width, height, checksX, checksY, col1, col2),
  () => _flat.GenImageChecked(
    width.toInt(),
    height.toInt(),
    checksX.toInt(),
    checksY.toInt(),
    col1,
    col2,
  ),
);