examples

display-rect.js

1
2
3
4
5
6
7
8
9
10
// With x, y, width, height
display.rect(100, 100, 100, 100)

// With postition and size
display.rect({ x: 860, y: 540 }, { width: 100, height: 100 })
display.rect(random.pos(), { width: 100, height: 100 })
display.rect(random.pos(), random.size(10, 100))

// With rectangle
display.rect({ x: 480, y: 320, width: 100, height: 100 })