351
edits
No edit summary |
No edit summary |
||
Line 50: | Line 50: | ||
[[File:patchkreisgroeße.jpg|300px]] | [[File:patchkreisgroeße.jpg|300px]] | ||
<source lang="java"> | |||
void setup() { | |||
size(600,600); | |||
background(255); | |||
smooth(); | |||
} | |||
void draw() { | |||
background(255); | |||
noStroke(); | |||
fill(40); | |||
ellipse(200,300,mouseX,100); | |||
ellipse(400,300,100,mouseY); | |||
} | |||
</source> |
edits