Advertisement
mattierichardson

Untitled

Sep 5th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. /* Mattie Richardson
  2. Red light, Green Light, Stoplight!
  3. 9-4-18
  4. */
  5.  
  6. size(320,180);
  7.  
  8. //black rectangle
  9. fill(0,0,0);
  10. rect(140,40,60,120);
  11.  
  12. //red circle
  13. fill(255,0,0);
  14. ellipse(170,60,38,38);
  15.  
  16. //yellow circle
  17. fill(255,255,0);
  18. ellipse(170,100,38,38);
  19.  
  20. //green circle
  21. fill(0,255,0);
  22. ellipse(170,140,38,38);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement