my drawing with code: shades of red

1 comments

  1. void setup () {
    size (800, 600);
    }

    void draw () {
    noStroke ();
    fill (random(350), 0, 0);
    circle(mouseX, mouseY, 100);
    }

Leave a Reply to Bryan Romeo Cancel reply

Your email address will not be published.