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