GenImageCellular method

  1. @override
ImageD GenImageCellular(
  1. int width,
  2. int height,
  3. int tileSize
)
override

Generate image: cellular algorithm, bigger tileSize means bigger cells

Implementation

@override
ImageD GenImageCellular(
  int width,
  int height,
  int tileSize,
) => $.Image$.RefCapture(
  RaylibCaptureIds.GenImageCellular,
  (p) => _ffi.GenImageCellular(
    width,
    height,
    tileSize,
  ).toDart(p.asNativePointer()),
);