ImageDrawPixel method

void ImageDrawPixel(
  1. Pointer<ImageC> dst,
  2. int posX,
  3. int posY,
  4. ColorC color,
)

Draw pixel within an image

Implementation

void ImageDrawPixel(Pointer<ImageC> dst, int posX, int posY, ColorC color)
  => _ImageDrawPixel(dst, posX, posY, color);