Advertisement
Nojus_Globys

circles

May 24th, 2023
664
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. void setup () {
  2.     size (1200, 800);
  3.     for (int i = 0; i < 20; ++i){
  4.         fill (random (255));
  5.         circle (random (width), random (height), random (width/10));
  6.     }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement