2017
08-08
08-08
clear()清空
Nameclear()清空 ExamplesPGraphics pg;
void setup() {
size(200, 200);
pg = createGraphics(100, 100);
}
void draw() {
background(204);
pg.beginDraw();
pg.stroke(0, 102, 153);
pg.line(0, 0.... Read More >