def setup background(200) noStroke rect(20, 20, 60, 60) end
def setup createCanvas(100, 100, WEBGL) end def draw background(0) noStroke fill(240, 150, 150) rotateX(frameCount * 0.02) rotateY(frameCount * 0.02) box(45, 45, 45) end
[p5.js] noStroke
図形や文字の境界線を描画しないようにします。
なし