SOURCE

console 命令行工具 X clear

                    
>
console
function setup(){
    createCanvas(500,150);
    background9(200);
} 
function draw(){
    fill(255,120,120,100);
    stroke(120,255,255,8);  
    line(100,90,430,30);
    rect(280,-40,130,130);
    ellipse(280,70,100,100);
}
function setup(){
    createCanvas(500,150);
    background(200);
}
function draw(){
    noFill();
    stroke(255);
    line(100,90,430,30);
    rect(280,-40,130,130);
    ellipse(280,70,100,100);
}