Gauge1417

Stoplight

Sep 3rd, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /* Gauge Smithee
  2. Stoplight
  3. */
  4.  
  5. size(320,180);
  6. background(178,13,91);
  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);
Add Comment
Please, Sign In to add comment