web3d / node_modules /three /src /objects /LineLoop.d.ts
julien-c's picture
julien-c HF Staff
do not gitignore the builds
6cd9596
Raw
History Blame Contribute Delete
367 Bytes
import { Line } from './Line';
import { Geometry } from './../core/Geometry';
import { Material } from './../materials/Material';
import { BufferGeometry } from '../core/BufferGeometry';
export class LineLoop extends Line {
constructor(
geometry?: Geometry | BufferGeometry,
material?: Material | Material[]
);
type: 'LineLoop';
isLineLoop: true;
}