In processing....
in
Programming Questions
•
11 months ago
How can I get this to work;
Here are more hints to this;
part 1
http://imgur.com/yCiva
part 2
http://imgur.com/ZkGkI
Here is some parts to it;
Here are more hints to this;
part 1
http://imgur.com/yCiva
part 2
http://imgur.com/ZkGkI
Here is some parts to it;
- size(700, 500);
- background(255);
- int numLines = 20;
- float h = height/numLines;
- float w = width/numLines;
- for (int i=0; i<numLines; i++) {
- line(0, i*h, width, i*h);
- line(i*w, 0, i*w, height);
- }
1