BLOBBO/node_modules/three/examples/jsm/lines/webgpu/Line2.js
type-two 969f602dd4 Foundation: vite+ts+three+rapier scaffold, frozen contracts, lane docs A-E
Fixed-step world runtime, event bus wire protocol between lanes, integration
seam (game.ts) with placeholder ball. Lanes A/B/C own disjoint dirs.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-17 19:55:43 +10:00

21 lines
412 B
JavaScript

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 };