hey folks,
i' am a total rookie in processing language. i just want to try this Lorenz Attractor viewer by Pedro Araujo "Monstah":
http://www.openprocessing.org/sketch/2362
the java online version works fine but the prosessing sketch gives me an "duplicate field" error for the main variables.
maybe it is just an problem with the file structures so that the variables are double declared?
any help appreciated.
kyii
---
import guicomponents.*;
float x = 10.0, rho = 28.0, beta = 8.0/3.0;
float theta = PI/4, phi = PI/4;
PVector eye = new PVector();
PVector center = new PVector(0, 0, rho-1);
float dist = 50;
boolean play = false;
LorenzAttractor lorenz;
LorenzController control;
1