Removing a few Basics examples

This commit is contained in:
Casey Reas
2011-09-06 00:52:15 +00:00
parent 136b97bea5
commit d9f585f3a9
6 changed files with 7 additions and 236 deletions
@@ -6,16 +6,14 @@
* It continues to do this until the variable "level" is equal to 1.
*/
void setup()
{
void setup() {
size(640, 360);
noStroke();
smooth();
drawCircle(width*0.5, height*0.5, 160, 8);
}
void drawCircle(float x, float y, int radius, int level)
{
void drawCircle(float x, float y, int radius, int level) {
float tt = 126 * level/6.0;
fill(tt, 153);
ellipse(x, y, radius*2, radius*2);