drawing particle
Shows how to draw with particles. We are using a pseudo class.
sketch.js
var agents = [];
function setup() {
var canvas = createCanvas(500,500);
canvas.parent('sketch');
text("draw on me", 10,15);
}
function draw() {
for (var i = 0; i < agents.length;i++) {
agents[i].run();
}
}
function mouseDragged() {
agents.push(new Particle(mouseX,mouseY));
}
function Particle (_x,_y) {
this.x = _x;
this.y = _y;
this.display = function() {
fill(255, 100, 0);
push();
translate(this.x, this.y);
ellipse(0, 0, 10, 10);
pop();
};
this.move = function() {
this.x = this.x + random(-1, 1);
this.y+= random(-1, 1);
this.x = constrain(this.x, 0, width);
this.y = constrain(this.y, 0, height);
};
this.run = function() {
this.display();
this.move();
};
} // END OF CLASS
index.html
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>{page.title}</title>
<meta name="description" content="something">
<meta name="author" content="me">
</head>
<body>
<div id="sketch"></div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.17/p5.min.js"></script>
<script type="text/javascript" src="sketch.js"></script>
</body>
</html>