(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){...") |
(No difference)
|
Revision as of 15:08, 8 June 2017
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);
}