703
edits
Line 201: | Line 201: | ||
int seg; // Segmentzähler | int seg; // Segmentzähler | ||
int r; // Radius | int r; // Radius | ||
float g; // Richtung bzw. | float g; // Richtung bzw. Gradzahl | ||
boolean mouseOver; //Maus über dem Objekt | boolean mouseOver; //Maus über dem Objekt | ||
Line 219: | Line 219: | ||
maleSegmente(seg,r,g,x,y); | maleSegmente(seg,r,g,x,y); | ||
} | } | ||
//abgewandelte Funktion aus dem Buch "Generative Gestaltung" Seite 187 | |||
void maleSegmente(int seg,int r,float g,float x,float y) { | void maleSegmente(int seg,int r,float g,float x,float y) { | ||
float segmentzahl = 3 + (float)seg; | float segmentzahl = 3 + (float)seg; |
edits