UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

9 lines (8 loc) 519 B
import { BufferGeometry } from 'three'; import { CoreGeometryBuilderBase } from './_Base'; import { BaseCorePoint } from '../../../entities/point/CorePoint'; import { PolyDictionary } from '../../../../../types/GlobalTypes'; export declare class CoreGeometryBuilderLineSegments extends CoreGeometryBuilderBase { protected _filterPoints(points: BaseCorePoint[]): BaseCorePoint[]; protected _indicesFromPoints(new_index_by_old_index: PolyDictionary<number>, old_geometry: BufferGeometry): number[] | undefined; }