///
Analise o código em Processing abaixo e assinale a alternativa correta.
void draw() {
if (keyPressed) {
if (key == 'w') {
camera(width/2, height/2 - 10, 200, width/2, height/2, 0, 0, 1, 0);
} else if (key == 's') {
camera(width/2, height/2 + 10, 200, width/2, height/2, 0, 0, 1, 0);
}
}
}