while loop
The while loop. Better if working with conditions.
sketch.js
// getting started with p5js
// this is a example for the while loop
function setup(){
// executed once
var canvas = createCanvas(400,400);
canvas.parent('sketch');
var counter = 0;
var step = 10;
var x = step/2;
var y = step/2;
while(counter < width*height){
ellipse(x,y,step,step);
x+=step;
if(x >= width){
x = step/2;
y +=step;
}
counter++;
}
}
function draw(){
// executed all the time
}
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>
<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>
<div id="sketch"></div>
</body>
</html>