drawPoint
Drawpoint is a basic operation in computer graphics used to render a single point at specified coordinates on a raster image or display. In raster graphics, a point corresponds to one pixel, making drawpoint a low-level primitive that underpins more complex rendering tasks such as lines, shapes, and markers. The term is used as a function name or method in various graphics libraries, often implemented as drawPoint(x, y, color) or as an alternative like setPixel or putPixel.
In practice, drawpoint can appear in different contexts. Some APIs expose a direct drawPoint function, while
Coordinate systems for drawpoint are typically integer pixel coordinates, reflecting the discrete nature of digital images.
See also: setPixel, putPixel, drawLine, rasterization, pixel, anti-aliasing.