DrawPixel method

void DrawPixel(
  1. int posX,
  2. int posY,
  3. ColorC color
)

Draw a pixel using geometry Can be slow, use with care

Implementation

void DrawPixel(int posX, int posY, ColorC color)
  => _DrawPixel(posX, posY, color);