Spaces:
Running
Running
| 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; | |
| } | |