Guest User

Untitled

a guest
Nov 12th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function setup() {
  2. createCanvas(500,500)
  3. background(0,0,0)
  4. ellipse()
  5. }
  6.  
  7. function draw() {
  8. ball()
  9. rectangles()
  10. }
  11.  
  12. function ball() {
  13. ellipse(30,30,30)
  14. fill(255,255,255)
  15. stroke(255,255,255)
  16. }
  17.  
  18. function rectangles() {
  19. rect(20,20,30,30)
  20. stroke(255,255,255)
  21. fill(255,255,255)
  22. }
Add Comment
Please, Sign In to add comment