flow like the river

This commit is contained in:
root 2025-11-07 00:06:12 +01:00
commit 013fe673f3
42435 changed files with 5764238 additions and 0 deletions

View file

@ -0,0 +1,20 @@
import { LineSegments2 } from './LineSegments2.js';
import { LineGeometry } from '../LineGeometry.js';
import { Line2NodeMaterial } from 'three';
class Line2 extends LineSegments2 {
constructor( geometry = new LineGeometry(), material = new Line2NodeMaterial( { color: Math.random() * 0xffffff } ) ) {
super( geometry, material );
this.isLine2 = true;
this.type = 'Line2';
}
}
export { Line2 };