ImageDrawLine method

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

Implementation

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