web3d / node_modules /three /src /objects /LineSegments.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
510 Bytes
import { Geometry } from './../core/Geometry';
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 extends Line {
constructor(
geometry?: Geometry | BufferGeometry,
material?: Material | Material[],
mode?: number
);
type: 'LineSegments';
isLineSegments: true;
}