点と線を描く -『processing.js』
processing.jsで点と線を描きます。
点を描く
// point(x, y)
point(50, 50);
直線を描く
// line(1x, 1y, 2x, 2y)
line(0, 200, 300, 50);
// 線幅
strokeWeight(20);
processing.jsで点と線を描きます。
// point(x, y)
point(50, 50);
// line(1x, 1y, 2x, 2y)
line(0, 200, 300, 50);
// 線幅
strokeWeight(20);