Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 | import type PointsManager from '../utilities/PointsManager'; export type IPointsManager<T> = PointsManager<T>; export interface PolyDataPointConfiguration { /** The dimensionality of the points */ dimensions?: number; /** The initial size of the backing array, not containing any data initially */ initialSize?: number; /** The incremental size to grow by when required */ growSize?: number; } |