Unexpected missing EOF, what's wrong?
in
Programming Questions
•
2 years ago
Hi everybody
I've been working on this code before, the process here is randomly rebuilding a previously puzzled image
it used to work, but now
I can read " Expecting EOF, found 1" in the console
maybe it is for I upgraded to 1.5 and was running previous version of processing???
I've been working on this code before, the process here is randomly rebuilding a previously puzzled image
it used to work, but now
I can read " Expecting EOF, found 1" in the console
maybe it is for I upgraded to 1.5 and was running previous version of processing???
float x, y, r;
float scaler = 1;
int compteur = 0;
/*--------------------------------------------------------
Sketch Setup
--------------------------------------------------------*/
void setup() {
size(500, 500);
smooth();
background(255);
tint(255, 204);
/*--------------------------------------------------------
Draw Loop
--------------------------------------------------------*/
}
void draw() {
if (keyPressed == true) {
for(int i = 0; i<500;i+=50){
for(int j = 0; j<500;j+=50){
image(loadImage(shapeArray[compteur]+".gif"), i, j);
compteur++;
}
}
save("saved/"+ch+".gif");
}
}
void keyPressed() {
println ("ouf");
}
1