From Processing to Gif Series 03

Trying To Break Free By Jerome Herr

I went on checking this generous and gifted author's openProcessing page, trying to dig out more about his talents of creating digital loop motion. Then this piece of work enlightened my eyes.

Code:

int sz = 400, num=20;
float theta, angle, rad = 60;
 
void setup() {
  size(500, 500);
  fill(0);
  stroke(255);
  strokeWeight(8);
}
 
void draw() {
  background(255);
  angle=0;
  for (int i=0; i

Code with My Comments :

int sz = 400, num=20;
float theta, angle, rad = 60;

void setup() {
  size(500, 500);
  fill(0);
  stroke(255);
  strokeWeight(8);
}

void draw() {
  background(255);
  angle=0;
  for (int i=0; i

你可能感兴趣的:(From Processing to Gif Series 03)