GMU:Actors, Traces, Collectives/SS17/Funktionen: Difference between revisions

From Medien Wiki
No edit summary
(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);
}