function setup() { createCanvas(500, 500);// 画面サイズ 500 x 500 px } function draw() { background(0);// 背景色:黒 rectMode(CENTER);// 描画モードは中心を基準にする noFill();// 塗りつぶしなし strokeWeight(10);// 線幅を10pxに stroke(255);// 線色を白に rect(width/2, height/2, 200,200);// ウィンドウ中心位置に200x200[px]で四角を描画 }