Loading...
Logo
Processing Forum
sno3's Profile
3 Posts
2 Responses
0 Followers

Activity Trend

Last 30 days

Loading Chart...

Show:
Private Message
    I guess what I'm trying to say is that I want him tracked with his pics of itself after being moved around. So, this would need to be moved by the mouse and have it's picture left behind itself. Therefore, the spider would fill the whole page with itself. If anyone can help me please do! I would greatly appreciate it :) 


    void setup() {
      size(800, 800);
      background(#393636);
    }
    void draw() {
      //body
      strokeWeight(6);
      stroke(0, 0, 0);
      fill(62, 35, 139);
      ellipse(550, 350, 200, 200);
      ellipse(550, 450, 150, 150);

      //eyes
      stroke(255, 0, 0);
      point(500, 450);
      point(525, 450);
      point(575, 450);
      point(600, 450);
      point(510, 475);
      point(535, 475);
      point(565, 475);
      point(590, 475);

      //fangs
      stroke(255, 0, 0);
      quad(520, 510, 500, 520, 500, 530, 520, 560);
      quad(580, 510, 600, 520, 600, 530, 580, 560);

      //legs
      stroke(0, 0, 0);
      line(470, 400, 450, 500);
      line(630, 400, 650, 500);
      line(455, 385, 425, 505);
      line(650, 380, 675, 510);
      line(475, 285, 400, 505);
      line(630, 285, 700, 505);
      line(490, 280, 450, 200);
      line(615, 280, 650, 200);
    }

    I guess what I'm trying to say is that I want him tracked with his trails of itself after being moved around.  So, this would need to be moved by the mouse and have it's picture left behind itself.  If anyone can help me please do! I would greatly appreciate it :)  I've said it before and I'll say it again; I'm still a newb lol.


    void setup() {
      size(800, 800);
      background(#7C6868);
    }
    void draw() {
      //spider body
      strokeWeight(6);
      stroke(0, 0, 0);
      fill(62, 35, 139);
      ellipse(550, 350, 200, 200);
      ellipse(550, 450, 150, 150);

      //eyes
      stroke(255, 0, 0);
      point(500, 450);
      point(525, 450);
      point(575, 450);
      point(600, 450);
      point(510, 475);
      point(535, 475);
      point(565, 475);
      point(590, 475);

      //fangs
      quad(520, 510, 500, 520, 500, 530, 520, 560);
      quad(580, 510, 600, 520, 600, 530, 580, 560);

      //legs
      stroke(0, 0, 0);
      line(470, 400, 450, 500);
      line(630, 400, 650, 500);
      line(455, 385, 425, 505);
      line(650, 380, 675, 510);
      line(475, 285, 400, 505);
      line(630, 285, 700, 505);
      line(490, 280, 450, 200);
      line(615, 280, 650, 200);
    }

    I've tried over and over again to make EVERYTHING move but I just can't seem to grasp it. Can someone please help me with my code? It would be greatly appreciated. I want this 'character' to move with my mouse.


    //STEVE is a hybrid of Hitler, a duck, and a lego

    void setup() {
    size(500, 500);
    smooth();
    background(255);
    strokeWeight(3);
    frameRate(30);
    }

    void draw() {
      background(255);
      ellipseMode(CENTER);
      rectMode(CENTER);

    //head
    fill(#FAFF12);
    rect(250, 200, 100, 100, 3, 6, 12, 18);

    //hair
    stroke(3);
    fill(0);
    ellipse(238, 150, 35, 15);
    ellipse(265, 150, 45, 18);
    ellipse(277, 150, 45, 18);

    noStroke();
    fill(0);
    arc(232, 152, 25, 25, HALF_PI, PI);
    fill(#AD343E);
    arc(215, 152, 25, 25, HALF_PI, PI);

    //eyes

    noStroke();
    fill(0);
    arc(235, 200, 14, 14, 0, PI+QUARTER_PI, CHORD);
    arc(265, 200, 14, 14, -2, PI+QUARTER_PI, CHORD);

    //brows
    stroke(15);
    fill(0);
    quad(225,185,235,175,230,180,245,190);//left brow
    quad(260, 185, 270, 180, 275, 185, 260, 190); //right brow

    //mouth
    fill(#ff0000);
    stroke(0);
    strokeWeight(3);
    ellipse(250, 227, 30, 35);
    fill(0);
    ellipse(250,227,25,15);
    }
    void mousePressed() {
      println("I am STEVE");
      println("One does NOT simply");
      println("Exit!");
    }




    Thanks a bunch!
    Shanimal