LineLoop.d.ts 485 B

12345678910111213141516171819
  1. import { Line } from './Line';
  2. import { Geometry } from './../core/Geometry';
  3. import { Material } from './../materials/Material';
  4. import { BufferGeometry } from '../core/BufferGeometry';
  5. export class LineLoop <
  6. TGeometry extends Geometry | BufferGeometry = Geometry | BufferGeometry,
  7. TMaterial extends Material | Material[] = Material | Material[]
  8. > extends Line {
  9. constructor(
  10. geometry?: TGeometry,
  11. material?: TMaterial
  12. );
  13. type: 'LineLoop';
  14. readonly isLineLoop: true;
  15. }