p5.jsでランダムなX軸にオブジェクトを生成する方法
方法1: random()関数を使用する方法let x; function setup() { createCanvas(400, 400); x = random(width); // X軸のランダムな値を取得 } function draw() { background(220); ellipse(x, height / 2, 50, 50); // ランダムなX軸に円を描画 }>>More
方法1: random()関数を使用する方法let x; function setup() { createCanvas(400, 400); x = random(width); // X軸のランダムな値を取得 } function draw() { background(220); ellipse(x, height / 2, 50, 50); // ランダムなX軸に円を描画 }>>More