genImageCellular function

Image genImageCellular(
  1. int width,
  2. int height,
  3. int tileSize
)

Generate image: cellular algorithm. Bigger tileSize means bigger cells.

Implementation

Image genImageCellular(
  int width,
  int height,
  int tileSize,
) {
  return Image.fromRef(library.GenImageCellular(width, height, tileSize));
}