plot()
カレントスクリーンの指定位置に指定のカラーでドットを打つ。 カラーはUint32の値。
書式:
plot(
x
,
y, color
)
例:
for n = 1 to 10000
col= rnd(16000000)
plot(
rnd(640), rnd(480), col
)
next
waitKey