This commit is contained in:
abe- 2017-06-17 16:41:37 +02:00
parent 87c9d001e4
commit de58e3f336

View file

@ -105,3 +105,7 @@ function draw() {
function compara(c1, c2) {
return red(c1) == red(c2) && green(c1) == green(c2) && blue(c1) == blue(c2);
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}