UNPKG

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