ImageDrawPixel method
Draw pixel within an image
Implementation
void ImageDrawPixel(
ImageD dst,
num posX,
num posY,
ColorD color,
) => run(
() => _debugLabels.ImageDrawPixel(dst, posX, posY, color),
() => _flat.ImageDrawPixel(
$.Image$.Ref1(dst),
posX.toInt(),
posY.toInt(),
color,
),
);