ImageDrawLine function

void ImageDrawLine(
  1. StructPointer<ImageD> dst,
  2. int startPosX,
  3. int startPosY,
  4. int endPosX,
  5. int endPosY,
  6. ColorD color,
)

See RaylibCoreFlatModule.ImageDrawLine.

Implementation

void ImageDrawLine(
  StructPointer<ImageD> dst,
  int startPosX,
  int startPosY,
  int endPosX,
  int endPosY,
  ColorD color,
) => _module.ImageDrawLine(dst, startPosX, startPosY, endPosX, endPosY, color);