neuer build

This commit is contained in:
2026-06-16 21:07:59 +02:00
parent 8f15898a0d
commit 7aa16ec4be
836 changed files with 1323926 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
import { LineSegments2 } from '../lines/LineSegments2.js';
import { LineGeometry } from '../lines/LineGeometry.js';
import { LineMaterial } from '../lines/LineMaterial.js';
var Line2 = function ( geometry, material ) {
if ( geometry === undefined ) geometry = new LineGeometry();
if ( material === undefined ) material = new LineMaterial( { color: Math.random() * 0xffffff } );
LineSegments2.call( this, geometry, material );
this.type = 'Line2';
};
Line2.prototype = Object.assign( Object.create( LineSegments2.prototype ), {
constructor: Line2,
isLine2: true
} );
export { Line2 };