Category: Uncategorized
More Test
Ean .js File Test
function setup() {
createCanvas(500, 500);
background(120, 200, 400);
text("p5.js vers 0.5.12 test.", 10, 15);
noStroke ();
fill (100, 10, 200)
ellipse (250, 250, 200, 170);
}
function draw() {
}
RachelPark_project1
function setup() {
createCanvas(300, 300);
background(200,200,200)
fill("lightblue");
noStroke();
ellipse (150,150,100,70);
}
function draw() {
}
NaHyun Sarah Kim Test
function setup() {
createCanvas(300, 300);
background("pink");
noStroke();
fill("skyblue");
ellipse(150, 150, 100, 70);
fill("white")
ellipse(150, 100, 90, 80);
}
function draw() {
if (millis() > 2000) {
osc.stop();
noLoop();
}
}
Test Post
This is a test post.
Doo Won Test Media
function setup() {
createCanvas(300, 300);
background("pink");
noStroke();
fill("white");
ellipse(150, 150, 100, 150);
rect(150, 150, 100, 150)
}
function draw() {
if (millis() > 2000) {
osc.stop();
noLoop();
}
}
Test