translate / rotate indivitual vertex coordinate
in
Programming Questions
•
2 years ago
Hi, I've been wondering if there was a way to do such a thing..
- beginShape();
- vertex(100,0);
- for(int x=0;x<360;x++) {
- rotate(radians(x));
- vertex(100,0);
- }
- endShape();
to be more accurate, is there a way to translate/rotate individual vertex coordinate.. something more convenient than calculating every point..
1