Files
KSP-MGA-Planner/includes/Line2.js
Krafpy 824af087c1 Modified file structure.
Modified the file structure to have the `index.html` at the root
of the repository. Needed for Github Pages.
2021-08-15 21:31:25 +02:00

20 lines
325 B
JavaScript

( function () {
class Line2 extends THREE.LineSegments2 {
constructor( geometry = new THREE.LineGeometry(), material = new THREE.LineMaterial( {
color: Math.random() * 0xffffff
} ) ) {
super( geometry, material );
this.type = 'Line2';
}
}
Line2.prototype.isLine2 = true;
THREE.Line2 = Line2;
} )();