Atlassian uses cookies to improve your browsing experience, perform analytics and research, and conduct advertising. Accept all cookies to indicate that you agree to our use of cookies on your device. Atlassian cookies and tracking notice, (opens new window)
Confluence
For you

Programming
Results will update as you type.
  • Tiling and Repetition
  • Reactors
  • Programming Basics: Parametric and Generative Graphic Design 2016
  • Archive
  • High Scores
  • Artificial Neural Network
  • Alternatives to the Processing IDE
  • p5.js Programming
    • p5.js Introduction
    • p5.js Variables
    • p5.js Random Numbers
    • p5.js SVG + Images
    • p5.js WebGL
    • p5.js Classes and Objects
    • p5.js Events and Functions
    • p5.js Loops
    • p5.js Coordinates
    • P5js Nested Loops
    • p5.js Animation Exercise 1
    • p5.js Animation Exercise 2
    • p5.js Conditionals
    • p5.js Arrays and Lists
    • p5.js Simple Collision Detection
    • p5.js Reactors
    • p5.js Tiling and Repetition
    • p5.js Vectors
    • p5.js Animation Solution with Objects
    • p5.js Easing
    • p5.js Perlin Noise
    • p5.js Particle System
    • p5.js Sound
    • p5j.s Typography
    • P5js Archive
  • Programming in Processing (java)

    /
    p5.js Animation Exercise 2
    Updated Sep 01, 2021

    p5.js Animation Exercise 2

    Analytics

    Loading data...


    Exercise

    Modify the example to do the following:

    1. The start and end point of the the animation path is to be defined by mouse click

    2. The ellipse should move forward and backwards endlessly

     

    let startPos; let endPos; let curTime = 0; let animSpeed = 5; let animDuration = 2000; let drawFlag = false; function setup() { createCanvas(640, 480); smooth(); startPos = createVector(0,0); endPos = createVector(0,0); } function draw() { background(51); // calc. the anim time curTime += animSpeed; if(curTime >= animDuration) { curTime = 0; } // calc. the proportion of completion in the animation var normTime = curTime * 1.0 / animDuration; if(drawFlag) { stroke(255); line(startPos.x,startPos.y,endPos.x,endPos.y); // calculate the position of the circle on the line let dir = p5.Vector.sub(endPos, startPos); let pos = p5.Vector.add(startPos, p5.Vector.mult(dir,normTime)); ellipse(pos.x,pos.y, 20,20); } } function mousePressed() { drawFlag = true; curTime = 0; startPos.set(mouseX,mouseY,0); get(startPos.x, startPos.y); } function mouseDragged() { endPos.set(mouseX,mouseY,0); } function mouseReleased() { drawFlag = false; print("released"); }

     

    Example Solution

    let startPos; let endPos; let curTime = 0; let animSpeed = 5; let animDuration = 2000; let drawFlag = false; let animEndFlag = false; let clickFlag = false; function setup() { createCanvas(640, 480); smooth(); startPos = createVector(0,0); endPos = createVector(0,0); } function draw() { background(51); // calc. the anim time curTime += animSpeed; if(curTime >= animDuration) { curTime = 0; } // calc. the proportion of completion in the animation var normTime = curTime * 1.0 / animDuration; if(drawFlag) { stroke(255); line(startPos.x,startPos.y,endPos.x,endPos.y); // calculate the position of the circle on the line let dir = p5.Vector.sub(endPos, startPos); // move the circle on the line let pos = p5.Vector.add(startPos, p5.Vector.mult(dir,normTime)); ellipse(pos.x,pos.y, 20,20); } } function mousePressed() { if (clickFlag == false) { stroke(255, 0, 0); fill(255,0,0); drawFlag = true; curTime = 0; startPos.set(mouseX, mouseY, 0); clickFlag = true; } else { stroke(255); fill(255); endPos.set(mouseX, mouseY, 0); clickFlag = false; } print(clickFlag); } function mouseMoved() { if (clickFlag == true) { endPos.set(mouseX, mouseY, 0); } }


    Alternative Solution with Object

    let clickFlag = false; var myAnimators = []; let count; function setup() { createCanvas(640, 480); smooth(); stroke(200); fill(255); myAnimators = new Animator(); } function draw() { background(51); for(var i = 0; i < myAnimators.length; i++) { myAnimators.get(i).drawAnimator(); } } function mousePressed() { if (clickFlag == false) { myAnimators = new Animator(mouseX, mouseY); clickFlag = true; } else { myAnimators.endClick(mouseX, mouseY); clickFlag = false; } print(clickFlag); } function mouseMoved() { if (clickFlag == true) { myAnimators.endClick(mouseX, mouseY); } } class Animator { constructor(x, y){ this.drawFlag = true; this.curTime = 0; this.startPos = createVector(x,y,0); this.endPos= this.startPos; this.animSpeed = 5; this.animDuration = 2000; this.animEndFlag = false; } endClick(X, Y) { this.endPos.set(X, Y, 0); } drawAnimator() { // calc. the anim time if (this.curTime >= this.animDuration) { this.animEndFlag = true; } if (this.curTime <= 0) { this.animEndFlag = false; } if (this.animEndFlag) { this.curTime -= this.animSpeed; } else { this.curTime += this.animSpeed; } // calc. the proportion of completion in the animation var normTime = this.curTime * 1.0 / this.animDuration; if (this.drawFlag) { line(this.startPos.x, this.startPos.y, this.endPos.x, this.endPos.y); // calculate the position of the circle on the line let dir = p5.Vector.sub(this.endPos, this.startPos); let pos = p5.Vector.add(this.startPos, p5.Veector.mult(dir, normTime)); ellipse(pos.x, pos.y, 20, 20); } } }



     

    Related content

    p5.js Animation Exercise 1
    p5.js Animation Exercise 1
    Programming
    More like this
    p5.js Introduction
    p5.js Introduction
    Programming
    More like this
    p5.js Events and Functions
    p5.js Events and Functions
    Programming
    More like this
    p5.js Particle System
    p5.js Particle System
    Programming
    More like this
    p5.js Coordinates
    p5.js Coordinates
    Programming
    More like this
    p5.js Arrays and Lists
    p5.js Arrays and Lists
    Programming
    More like this
    {"serverDuration": 21, "requestCorrelationId": "baac125bf98f4ce39cb272e44bd5d7d2"}