No edit summary |
m (Max moved page GMU:Actors, Traces, Collectives/Funktionen to GMU:Actors, Traces, Collectives/SS17/Funktionen: gleicher kurs im WS) |
(No difference)
|
Revision as of 21:29, 13 August 2017
Einen Kreis gibt es in Processing nicht, daher machen wir uns einen aus einer Ellipse. (Minimalbeispiel einer eigenen Funktion)
void setup() {
size(640,360);
}
void draw() {
background(255);
circle(200,200,40);
}
void circle(float xloc, float yloc, int size){
ellipse(xloc,yloc,size,size);
}