Package ilcd
Class Draw

Public Method drawDotAtXY

static void drawDotAtXY(int posX, int posY, int colorValue)

Throws:

_INSERT_METHOD_SIGNATURE_HERE_

Description:

Parameter Range Description
posX 0 ... display width - 1 horizontal position
posY 0 ... display height - 1 vertical position
colorValue 0x000000 ... 0xFFFFFF color of the dot

Sets or clears a pixel at the specified position.

Note

Example

Draw.drawDotAtXY(20, 35, 0x00FF00);

Draws a green dot at the position x = 20 and y = 35 pixels.

See also:

Draw.drawDot(int)
Draw.setClearPixel(boolean)
Draw.setClearPixelAtXY(int, int, boolean)
Attribute.setAlpha(int)