Skip to content

Instantly share code, notes, and snippets.

@indefinit
Created April 18, 2016 22:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indefinit/d5c381c7be5dc2cac14ab85a66ae5929 to your computer and use it in GitHub Desktop.
Save indefinit/d5c381c7be5dc2cac14ab85a66ae5929 to your computer and use it in GitHub Desktop.
var particles = [];
function draw(){
for (var i = 0; i < particles.length; i++) {
//render your elipse with particle properties as x and y values
ellipse(particles[i].positionX, ...);
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment