// Storing Input // by REAS int num = 60; float theta = 0.0; float mx[] = new float[num]; float my[] = new float[num]; void setup() { size(350, 350); fill(255, 153); framerate(30); rectMode(CENTER); } void draw() { background(51); theta = (theta + 0.1) % TWO_PI; // Reads throught the entire array // and shifts the values to the left for(int i=1; i