plot()
Write a dot on current screen at given coordinates with given color. Color must provided in Uint32 format.
Syntax:
plot(
x
,
y, color
)
Example:
for n = 1 to 10000
col= rnd(16000000)
plot(
rnd(640), rnd(480), col
)
next
waitKey