starry / backend /libs /three /objects /LineSegments.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
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;
}