LineLoop.d.ts 367 B

1234567891011121314
  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 extends Line {
  6. constructor(
  7. geometry?: Geometry | BufferGeometry,
  8. material?: Material | Material[]
  9. );
  10. type: 'LineLoop';
  11. isLineLoop: true;
  12. }