Processing JS

Out of context: Reply #13

  • Started
  • Last post
  • 15 Responses
  • PIZZA0

    2.0

    void setup() {
    size( 250, 250 );
    frameRate( 30 );
    strokeWeight( 2 );
    stroke(255,255,255);
    background( 0, 0, 0 );
    };
    void draw() {
    noFill();
    stroke(234,198,181);
    ellipse( 40,140, 40, 40);
    ellipse( 70,170, 40, 40);
    line(120,30,50,120);
    line(160,50,90,160);
    stroke(215,92,145);
    ellipse( 140,40, 40, 40);
    line(140,40,155,25);
    stroke(255,255,255);
    line(155,25,180+random(40),0+ran...
    fill(0,0,0,10);
    rect(0,0,250,250);
    }

View thread