GMU:Actors, Traces, Collectives/SS17/Funktionen

From Medien Wiki
< GMU:Actors, Traces, Collectives‎ | SS17
Revision as of 15:08, 8 June 2017 by Max (talk | contribs) (Created page with "<syntaxhighlight lang="Javascript"> void setup() { size(640,360); } void draw() { background(255); circle(200,200,40); } void circle(float xloc, float yloc, int size){...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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);
}