Line2.d.ts 333 B

12345678910111213
  1. import { LineGeometry } from './LineGeometry';
  2. import { LineSegments2 } from './LineSegments2';
  3. import { LineMaterial } from './LineMaterial';
  4. export class Line2 extends LineSegments2 {
  5. geometry: LineGeometry;
  6. material: LineMaterial;
  7. constructor( geometry?: LineGeometry, material?: LineMaterial );
  8. readonly isLine2: true;
  9. }