UNPKG

@kitware/vtk.js

Version:

Visualization Toolkit for the Web

91 lines (76 loc) 2.56 kB
import { TypedArray } from './../../types'; import vtkDataArray, { IDataArrayInitialValues } from './DataArray'; /** * The inital values of a vtkCellArray. */ export interface ICellArrayInitialValues extends IDataArrayInitialValues { empty?: boolean; } /** * You are NOT allowed to modify the cell array via `getData()`. * Only via `setData` or `insertNextCell` */ export interface vtkCellArray extends vtkDataArray { /** * Get the number of cells in the array. * @param {Boolean} [recompute] Recompute the number of cells. */ getNumberOfCells(recompute?: boolean): number; /** * Get the sizes of the cells in this array. * @param {Boolean} [recompute] Recompute the cell sizes. */ getCellSizes(recompute?: boolean): any; /** * Set the data of this array. * @param {Number[]|TypedArray} typedArray The Array value. */ setData(typedArray: number[]|TypedArray): void; /** * Returns the point indices at the given location as a subarray. * @param loc */ getCell(loc: any): void; /** * Insert a cell to this array in the next available slot. * @param {Number[]} cellPointIds The list of point ids (NOT prefixed with the number of points) * @returns {Number} Idx of where the cell was inserted */ insertNextCell(cellPointIds: number[]): number; } /** * Method used to decorate a given object (publicAPI+model) with vtkCellArray characteristics. * * @param publicAPI object on which methods will be bounds (public) * @param model object on which data structure will be bounds (protected) * @param {ICellArrayInitialValues} [initialValues] (default: {}) */ export function extend(publicAPI: object, model: object, initialValues?: ICellArrayInitialValues): void; /** * Method used to create a new instance of vtkCellArray * @param {ICellArrayInitialValues} [initialValues] for pre-setting some of its content */ export function newInstance(initialValues?: ICellArrayInitialValues): vtkCellArray; /** * @static * @param cellArray */ export function extractCellSizes(cellArray: any): any; /** * @static * @param cellArray */ export function getNumberOfCells(cellArray: any): any; /** * vtkCellArray stores dataset topologies as an explicit connectivity table * listing the point ids that make up each cell. * * @see [vtkDataArray](./Common_Core_DataArray.html) */ export declare const vtkCellArray: { newInstance: typeof newInstance; extend: typeof extend; extractCellSizes: typeof extractCellSizes; getNumberOfCells: typeof getNumberOfCells; } export default vtkCellArray;