ImageDrawRectangle function

void ImageDrawRectangle(
  1. StructPointer<ImageD> dst,
  2. int posX,
  3. int posY,
  4. int width,
  5. int height,
  6. ColorD color,
)

See RaylibCoreFlatModule.ImageDrawRectangle.

Implementation

void ImageDrawRectangle(
  StructPointer<ImageD> dst,
  int posX,
  int posY,
  int width,
  int height,
  ColorD color,
) => _module.ImageDrawRectangle(dst, posX, posY, width, height, color);