Files
havox/projects/cubic_bezier_curve/cLine.js
2026-03-31 22:19:53 +01:00

14 lines
267 B
JavaScript

class cLine {
constructor(a, b, col = color(180, 180, 180, 140), w = 2) {
this.a = a;
this.b = b;
this.col = col;
this.w = w;
}
drawLine() {
stroke(this.col);
strokeWeight(this.w);
line(this.a.x, this.a.y, this.b.x, this.b.y);
}
}