ImageDrawLine method

void ImageDrawLine(
  1. Pointer<ImageC> dst,
  2. int startPosX,
  3. int startPosY,
  4. int endPosX,
  5. int endPosY,
  6. ColorC color,
)

Draw line within an image

Implementation

void ImageDrawLine(Pointer<ImageC> dst, int startPosX, int startPosY, int endPosX, int endPosY, ColorC color)
  => _ImageDrawLine(dst, startPosX, startPosY, endPosX, endPosY, color);