Manipulating/Transforming Shapes?
in
Programming Questions
•
1 year ago
I'm new to processing (though I am familiar with Java), and I just wrote some basic code for a curve:
- void draw()
- {
- beginShape();
- for (int i = 1; i < 50; i++)
- {
- line(i,((i-1)*(i-1)),i,(i*i));
- }
- endShape();
- }
1