/usr/include/vtk-6.3/vtkUnstructuredGrid.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkUnstructuredGrid.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkUnstructuredGrid - dataset represents arbitrary combinations of
// all possible cell types
// .SECTION Description
// vtkUnstructuredGrid is a data object that is a concrete implementation of
// vtkDataSet. vtkUnstructuredGrid represents any combinations of any cell
// types. This includes 0D (e.g., points), 1D (e.g., lines, polylines), 2D
// (e.g., triangles, polygons), and 3D (e.g., hexahedron, tetrahedron,
// polyhedron, etc.).
#ifndef vtkUnstructuredGrid_h
#define vtkUnstructuredGrid_h
#include "vtkCommonDataModelModule.h" // For export macro
#include "vtkUnstructuredGridBase.h"
class vtkCellArray;
class vtkCellLinks;
class vtkConvexPointSet;
class vtkEmptyCell;
class vtkHexahedron;
class vtkIdList;
class vtkIdTypeArray;
class vtkLine;
class vtkPixel;
class vtkPolyLine;
class vtkPolyVertex;
class vtkPolygon;
class vtkPyramid;
class vtkPentagonalPrism;
class vtkHexagonalPrism;
class vtkQuad;
class vtkQuadraticEdge;
class vtkQuadraticHexahedron;
class vtkQuadraticWedge;
class vtkQuadraticPolygon;
class vtkQuadraticPyramid;
class vtkQuadraticQuad;
class vtkQuadraticTetra;
class vtkQuadraticTriangle;
class vtkTetra;
class vtkTriangle;
class vtkTriangleStrip;
class vtkUnsignedCharArray;
class vtkVertex;
class vtkVoxel;
class vtkWedge;
class vtkTriQuadraticHexahedron;
class vtkQuadraticLinearWedge;
class vtkQuadraticLinearQuad;
class vtkBiQuadraticQuad;
class vtkBiQuadraticQuadraticWedge;
class vtkBiQuadraticQuadraticHexahedron;
class vtkBiQuadraticTriangle;
class vtkCubicLine;
class vtkPolyhedron;
class vtkIdTypeArray;
class VTKCOMMONDATAMODEL_EXPORT vtkUnstructuredGrid :
public vtkUnstructuredGridBase
{
public:
static vtkUnstructuredGrid *New();
vtkTypeMacro(vtkUnstructuredGrid, vtkUnstructuredGridBase)
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Standard vtkDataSet API methods. See vtkDataSet for more information.
int GetDataObjectType() {return VTK_UNSTRUCTURED_GRID;};
// Description:
// Method allocates initial storage for the cell connectivity. Use this
// method before the method InsertNextCell(). The array capacity is
// doubled when the inserting a cell exceeds the current capacity.
// extSize is no longer used.
virtual void Allocate(vtkIdType numCells=1000, int extSize=1000);
// Description:
// Insert/create cell in object by type and list of point ids defining
// cell topology. Most cells require just a type which implicitly defines
// a set of points and their ordering. For non-polyhedron cell type, npts
// is the number of unique points in the cell. pts are the list of global
// point Ids. For polyhedron cell, a special input format is required.
// npts is the number of faces in the cell. ptIds is the list of face stream:
// (numFace0Pts, id1, id2, id3, numFace1Pts,id1, id2, id3, ...)
// Make sure you have called Allocate() before calling this method
vtkIdType InsertNextCell(int type, vtkIdType npts, vtkIdType *ptIds);
// Description:
// Insert/create cell in object by a list of point ids defining
// cell topology. Most cells require just a type which implicitly defines
// a set of points and their ordering. For non-polyhedron cell type, ptIds
// is the list of global Ids of unique cell points. For polyhedron cell,
// a special ptIds input format is required:
// (numCellFaces, numFace0Pts, id1, id2, id3, numFace1Pts,id1, id2, id3, ...)
// Make sure you have called Allocate() before calling this method
vtkIdType InsertNextCell(int type, vtkIdList *ptIds);
// Desciption:
// Insert/create a polyhedron cell. npts is the number of unique points in
// the cell. pts is the list of the unique cell point Ids. nfaces is the
// number of faces in the cell. faces is the face-stream
// [numFace0Pts, id1, id2, id3, numFace1Pts,id1, id2, id3, ...].
// All point Ids are global.
// Make sure you have called Allocate() before calling this method
vtkIdType InsertNextCell(int type, vtkIdType npts, vtkIdType *ptIds,
vtkIdType nfaces, vtkIdType *faces);
// Description:
// Standard vtkDataSet methods; see vtkDataSet.h for documentation.
void Reset();
virtual void CopyStructure(vtkDataSet *ds);
vtkIdType GetNumberOfCells();
virtual vtkCell *GetCell(vtkIdType cellId);
virtual void GetCell(vtkIdType cellId, vtkGenericCell *cell);
virtual void GetCellBounds(vtkIdType cellId, double bounds[6]);
virtual void GetCellPoints(vtkIdType cellId, vtkIdList *ptIds);
void GetPointCells(vtkIdType ptId, vtkIdList *cellIds);
vtkCellIterator* NewCellIterator();
int GetCellType(vtkIdType cellId);
vtkUnsignedCharArray* GetCellTypesArray() { return this->Types; }
vtkIdTypeArray* GetCellLocationsArray() { return this->Locations; }
void Squeeze();
void Initialize();
int GetMaxCellSize();
void BuildLinks();
vtkCellLinks *GetCellLinks() {return this->Links;};
virtual void GetCellPoints(vtkIdType cellId, vtkIdType& npts,
vtkIdType* &pts);
// Description:
// Get the face stream of a polyhedron cell in the following format:
// (numCellFaces, numFace0Pts, id1, id2, id3, numFace1Pts,id1, id2, id3, ...).
// If the requested cell is not a polyhedron, then the standard GetCellPoints
// is called to return a list of unique point ids (id1, id2, id3, ...).
void GetFaceStream(vtkIdType cellId, vtkIdList *ptIds);
// Description:
// Get the number of faces and the face stream of a polyhedral cell.
// The output \a ptIds has the following format:
// (numFace0Pts, id1, id2, id3, numFace1Pts,id1, id2, id3, ...).
// If the requested cell is not a polyhedron, then the standard GetCellPoints
// is called to return the number of points and a list of unique point ids
// (id1, id2, id3, ...).
void GetFaceStream(vtkIdType cellId, vtkIdType& nfaces, vtkIdType* &ptIds);
// Description:
// Special methods specific to vtkUnstructuredGrid for defining the cells
// composing the dataset. Most cells require just arrays of cellTypes,
// cellLocations and cellConnectivities which implicitly define the set of
// points in each cell and their ordering. In those cases the
// cellConnectivities are of the format
// (numFace0Pts, id1, id2, id3, numFace1Pts, id1, id2, id3...). However, some
// cells like vtkPolyhedron require points plus a list of faces. To handle
// vtkPolyhedron, SetCells() support a special input cellConnectivities format
// (numCellFaces, numFace0Pts, id1, id2, id3, numFace1Pts,id1, id2, id3, ...)
// The functions use vtkPolyhedron::DecomposeAPolyhedronCell() to convert
// polyhedron cells into standard format.
void SetCells(int type, vtkCellArray *cells);
void SetCells(int *types, vtkCellArray *cells);
void SetCells(vtkUnsignedCharArray *cellTypes, vtkIdTypeArray *cellLocations,
vtkCellArray *cells);
void SetCells(vtkUnsignedCharArray *cellTypes, vtkIdTypeArray *cellLocations,
vtkCellArray *cells, vtkIdTypeArray *faceLocations,
vtkIdTypeArray *faces);
vtkCellArray *GetCells() {return this->Connectivity;};
void ReplaceCell(vtkIdType cellId, int npts, vtkIdType *pts);
vtkIdType InsertNextLinkedCell(int type, int npts, vtkIdType *pts);
void RemoveReferenceToCell(vtkIdType ptId, vtkIdType cellId);
void AddReferenceToCell(vtkIdType ptId, vtkIdType cellId);
void ResizeCellList(vtkIdType ptId, int size);
// Description:
// Topological inquiry to get all cells using list of points exclusive of
// cell specified (e.g., cellId).
// THIS METHOD IS THREAD SAFE IF FIRST CALLED FROM A SINGLE THREAD AND
// THE DATASET IS NOT MODIFIED
virtual void GetCellNeighbors(vtkIdType cellId, vtkIdList *ptIds,
vtkIdList *cellIds);
// Description:
// Set / Get the piece and the number of pieces. Similar to extent in 3D.
virtual int GetPiece();
virtual int GetNumberOfPieces();
// Description:
// Get the ghost level.
virtual int GetGhostLevel();
// Description:
// Return the actual size of the data in kibibytes (1024 bytes). This number
// is valid only after the pipeline has updated. The memory size
// returned is guaranteed to be greater than or equal to the
// memory required to represent the data (e.g., extra space in
// arrays, etc. are not included in the return value). THIS METHOD
// IS THREAD SAFE.
unsigned long GetActualMemorySize();
// Description:
// Shallow and Deep copy.
virtual void ShallowCopy(vtkDataObject *src);
virtual void DeepCopy(vtkDataObject *src);
// Description:
// Fill vtkIdTypeArray container with list of cell Ids. This
// method traverses all cells and, for a particular cell type,
// inserts the cell Id into the container.
void GetIdsOfCellsOfType(int type, vtkIdTypeArray *array);
// Description:
// Traverse cells and determine if cells are all of the same type.
int IsHomogeneous();
// Description:
// This method will remove any cell that is marked as ghost
// (has the vtkDataSetAttributes::DUPLICATECELL bit set).
void RemoveGhostCells();
//BTX
// Description:
// Retrieve an instance of this class from an information object.
static vtkUnstructuredGrid* GetData(vtkInformation* info);
static vtkUnstructuredGrid* GetData(vtkInformationVector* v, int i=0);
//ETX
// Description:
// Special support for polyhedron. Return NULL for all other cell types.
vtkIdType *GetFaces(vtkIdType cellId);
// Description:
// Get pointer to faces and facelocations. Support for polyhedron cells.
vtkIdTypeArray* GetFaces(){return this->Faces;};
vtkIdTypeArray* GetFaceLocations(){return this->FaceLocations;};
// Description:
// Special function used by vtkUnstructuredGridReader.
// By default vtkUnstructuredGrid does not contain face information, which is
// only used by polyhedron cells. If so far no polyhedron cells have been
// added, Faces and FaceLocations pointers will be NULL. In this case, need to
// initialize the arrays and assign values to the previous non-polyhedron cells.
int InitializeFacesRepresentation(vtkIdType numPrevCells);
// Description:
// A static method for converting a polyhedron vtkCellArray of format
// [nCellFaces, nFace0Pts, i, j, k, nFace1Pts, i, j, k, ...]
// into three components: (1) an integer indicating the number of faces
// (2) a standard vtkCellArray storing point ids [nCell0Pts, i, j, k]
// and (3) an vtkIdTypeArray storing face connectivity in format
// [nFace0Pts, i, j, k, nFace1Pts, i, j, k, ...]
// Note: input is assumed to contain only one polyhedron cell.
// Outputs (2) and (3) will be stacked at the end of the input
// cellArray and faces. The original data in the input will not
// be touched.
static void DecomposeAPolyhedronCell(vtkCellArray *polyhedronCellArray,
vtkIdType & nCellpts,
vtkIdType & nCellfaces,
vtkCellArray *cellArray,
vtkIdTypeArray *faces);
static void DecomposeAPolyhedronCell(vtkIdType * polyhedronCellStream,
vtkIdType & nCellpts,
vtkIdType & nCellfaces,
vtkCellArray *cellArray,
vtkIdTypeArray *faces);
// Description:
// A static method for converting an input polyhedron cell stream of format
// [nFace0Pts, i, j, k, nFace1Pts, i, j, k, ...]
// into three components: (1) an integer indicating the number of faces
// (2) a standard vtkCellArray storing point ids [nCell0Pts, i, j, k]
// and (3) an vtkIdTypeArray storing face connectivity in format
// [nFace0Pts, i, j, k, nFace1Pts, i, j, k, ...]
// Note: input is assumed to contain only one polyhedron cell.
// Outputs (2) and (3) will be stacked at the end of the input
// cellArray and faces. The original data in the input will not
// be touched.
static void DecomposeAPolyhedronCell(vtkIdType nCellFaces,
vtkIdType * inFaceStream,
vtkIdType & nCellpts,
vtkCellArray * cellArray,
vtkIdTypeArray * faces);
// Description:
// Convert pid in a face stream into idMap[pid]. The face stream is of format
// [nCellFaces, nFace0Pts, i, j, k, nFace1Pts, i, j, k, ...]. The user is
// responsible to make sure all the Ids in faceStream do not exceed the
// range of idMap.
static void ConvertFaceStreamPointIds(vtkIdList * faceStream,
vtkIdType * idMap);
// Description:
// Convert pid in a face stream into idMap[pid]. The face stream is of format
// [nFace0Pts, i, j, k, nFace1Pts, i, j, k, ...]. The user is responsible to
// make sure all the Ids in faceStream do not exceed the range of idMap.
static void ConvertFaceStreamPointIds(vtkIdType nfaces,
vtkIdType * faceStream,
vtkIdType * idMap);
protected:
vtkUnstructuredGrid();
~vtkUnstructuredGrid();
// used by GetCell method
vtkVertex *Vertex;
vtkPolyVertex *PolyVertex;
vtkLine *Line;
vtkPolyLine *PolyLine;
vtkTriangle *Triangle;
vtkTriangleStrip *TriangleStrip;
vtkPixel *Pixel;
vtkQuad *Quad;
vtkPolygon *Polygon;
vtkTetra *Tetra;
vtkVoxel *Voxel;
vtkHexahedron *Hexahedron;
vtkWedge *Wedge;
vtkPyramid *Pyramid;
vtkPentagonalPrism *PentagonalPrism;
vtkHexagonalPrism *HexagonalPrism;
vtkQuadraticEdge *QuadraticEdge;
vtkQuadraticTriangle *QuadraticTriangle;
vtkQuadraticQuad *QuadraticQuad;
vtkQuadraticPolygon *QuadraticPolygon;
vtkQuadraticTetra *QuadraticTetra;
vtkQuadraticHexahedron *QuadraticHexahedron;
vtkQuadraticWedge *QuadraticWedge;
vtkQuadraticPyramid *QuadraticPyramid;
vtkQuadraticLinearQuad *QuadraticLinearQuad;
vtkBiQuadraticQuad *BiQuadraticQuad;
vtkTriQuadraticHexahedron *TriQuadraticHexahedron;
vtkQuadraticLinearWedge *QuadraticLinearWedge;
vtkBiQuadraticQuadraticWedge *BiQuadraticQuadraticWedge;
vtkBiQuadraticQuadraticHexahedron *BiQuadraticQuadraticHexahedron;
vtkBiQuadraticTriangle *BiQuadraticTriangle;
vtkCubicLine *CubicLine;
vtkConvexPointSet *ConvexPointSet;
vtkPolyhedron *Polyhedron;
vtkEmptyCell *EmptyCell;
// points inherited
// point data (i.e., scalars, vectors, normals, tcoords) inherited
vtkCellArray *Connectivity;
vtkCellLinks *Links;
vtkUnsignedCharArray *Types;
vtkIdTypeArray *Locations;
// Special support for polyhedra/cells with explicit face representations.
// The Faces class represents polygonal faces using a modified vtkCellArray
// structure. Each cell face list begins with the total number of faces in
// the cell, followed by a vtkCellArray data organization
// (n,i,j,k,n,i,j,k,...).
vtkIdTypeArray *Faces;
vtkIdTypeArray *FaceLocations;
private:
// Hide these from the user and the compiler.
vtkUnstructuredGrid(const vtkUnstructuredGrid&); // Not implemented.
void operator=(const vtkUnstructuredGrid&); // Not implemented.
void Cleanup();
};
#endif
|