14 lines
222 B
JavaScript
14 lines
222 B
JavaScript
class cLine{
|
|
constructor(p1, p2){
|
|
this.p1 = p1;
|
|
this.p2 = p2;
|
|
}
|
|
|
|
drawLine(){
|
|
stroke(255, 50);
|
|
strokeWeight(3);
|
|
|
|
line(this.p1.x, this.p1.y, this.p2.x, this.p2.y);
|
|
}
|
|
}
|