23 lines
410 B
Lua
23 lines
410 B
Lua
local math = require('math')
|
|
local paper = require('paper')
|
|
|
|
paper.init()
|
|
paper.clear()
|
|
|
|
local width = paper.get_width()
|
|
local height = paper.get_height()
|
|
|
|
print(
|
|
'width: ' .. width,
|
|
'height: ' .. height
|
|
)
|
|
|
|
for i = 1, 50 do
|
|
x = math.random() * width
|
|
y = math.random() * height
|
|
r = 24 + math.ceil(math.random() * 12)
|
|
|
|
paper.fill_circle(x, y, r, math.floor(math.random() * 0xFF))
|
|
end
|
|
|
|
paper.update()
|