Spaces:
Running
Running
File size: 599 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | import { Material } from './../materials/Material';
import { Line } from './Line';
import { BufferGeometry } from '../core/BufferGeometry';
/**
* @deprecated
*/
export const LineStrip: number;
/**
* @deprecated
*/
export const LinePieces: number;
export class LineSegments<TGeometry extends BufferGeometry = BufferGeometry, TMaterial extends Material | Material[] = Material | Material[]> extends Line<
TGeometry,
TMaterial
> {
constructor(geometry?: TGeometry, material?: TMaterial);
/**
* @default 'LineSegments'
*/
type: 'LineSegments' | string;
readonly isLineSegments: true;
}
|