xxxxxxxxxx
14
// PushPop (c) 2015, 2021 kouichi.matsuda@gmail.com
function setup() {
ellipse(50, 20, 30, 30);
push(); // 描画属性を保存する
fill(128);
ellipse(50, 50, 30, 30);
pop(); // 保存した描画属性に戻す
ellipse(50, 80, 30, 30);
}
function draw(){
}