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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkStaticCellLinksTemplate.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.
=========================================================================*/
/**
* @class vtkStaticCellLinksTemplate
* @brief object represents upward pointers from points
* to list of cells using each point (template implementation)
*
*
* vtkStaticCellLinksTemplate is a supplemental object to vtkCellArray and
* vtkCellTypes, enabling access to the list of cells using each point.
* vtkStaticCellLinksTemplate is an array of links, each link represents a
* list of cell ids using a particular point. The information provided by
* this object can be used to determine neighbors (e.g., face neighbors,
* edge neighbors)and construct other local topological information. This
* class is a faster implementation of vtkCellLinks. However, it cannot be
* incrementally constructed; it is meant to be constructed once (statically)
* and must be rebuilt if the cells change.
*
* This is a templated implementation for vtkStaticCellLinks. The reason for
* the templating is to gain performance and reduce memory by using smaller
* integral types to represent ids. For example, if the maximum id can be
* represented by an int (as compared to a vtkIdType), it is possible to
* reduce memory requirements by half and increase performance. This
* templated class can be used directly; alternatively the
* non-templated class vtkStaticCellLinks can be used for convenience;
* although it uses vtkIdType and so will lose some speed and memory
* advantages.
*
* @sa
* vtkAbstractCellLinks vtkCellLinks vtkStaticCellLinks
*/
#ifndef vtkStaticCellLinksTemplate_h
#define vtkStaticCellLinksTemplate_h
#include "vtkABINamespace.h"
VTK_ABI_NAMESPACE_BEGIN
class vtkDataSet;
class vtkPolyData;
class vtkUnstructuredGrid;
class vtkExplicitStructuredGrid;
class vtkCellArray;
VTK_ABI_NAMESPACE_END
#include "vtkAbstractCellLinks.h"
VTK_ABI_NAMESPACE_BEGIN
template <typename TIds>
class vtkStaticCellLinksTemplate
{
public:
///@{
/**
* Instantiate and destructor methods.
*/
vtkStaticCellLinksTemplate();
~vtkStaticCellLinksTemplate();
///@}
/**
* Make sure any previously created links are cleaned up.
*/
void Initialize();
/**
* Build the link list array for a general dataset. Slower than the
* specialized methods that follow.
*/
void BuildLinks(vtkDataSet* ds);
/**
* Build the link list array for vtkPolyData.
*/
void BuildLinks(vtkPolyData* pd);
/**
* Build the link list array for vtkUnstructuredGrid.
*/
void BuildLinks(vtkUnstructuredGrid* ugrid);
/**
* Build the link list array for vtkExplicitStructuredGrid.
*/
void BuildLinks(vtkExplicitStructuredGrid* esgrid);
/**
* Specialized methods for building links from cell array.
*/
void SerialBuildLinks(const vtkIdType numPts, const vtkIdType numCells, vtkCellArray* cellArray);
void ThreadedBuildLinks(
const vtkIdType numPts, const vtkIdType numCells, vtkCellArray* cellArray);
///@{
/**
* Get the number of cells using the point specified by ptId.
*/
TIds GetNumberOfCells(vtkIdType ptId) { return (this->Offsets[ptId + 1] - this->Offsets[ptId]); }
vtkIdType GetNcells(vtkIdType ptId) { return (this->Offsets[ptId + 1] - this->Offsets[ptId]); }
///@}
/**
* Indicate whether the point ids provided defines at least one cell, or a
* portion of a cell.
*/
template <typename TGivenIds>
bool MatchesCell(TGivenIds npts, const TGivenIds* pts);
/**
* Return a list of cell ids using the point specified by ptId.
*/
TIds* GetCells(vtkIdType ptId) { return (this->Links + this->Offsets[ptId]); }
/**
* Given point ids that define a cell, find the cells that contains all of
* these point ids. The set of linked cells is returned in cells.
*/
void GetCells(vtkIdType npts, const vtkIdType* pts, vtkIdList* cells);
/**
* Return the total number of links represented after the links have
* been built.
*/
TIds GetLinksSize() { return this->LinksSize; }
/**
* Obtain the offsets into the internal links array. This is useful for
* parallel computing.
*/
TIds GetOffset(vtkIdType ptId) { return this->Offsets[ptId]; }
///@{
/**
* Support vtkAbstractCellLinks API.
*/
unsigned long GetActualMemorySize();
void DeepCopy(vtkAbstractCellLinks* src);
void SelectCells(vtkIdType minMaxDegree[2], unsigned char* cellSelection);
///@}
///@{
/**
* Control whether to thread or serial process.
*/
void SetSequentialProcessing(vtkTypeBool seq) { this->SequentialProcessing = seq; }
vtkTypeBool GetSequentialProcessing() { return this->SequentialProcessing; }
///@}
protected:
// The various templated data members
TIds LinksSize;
TIds NumPts;
TIds NumCells;
// These point to the core data structures
TIds* Links; // contiguous runs of cell ids
TIds* Offsets; // offsets for each point into the links array
// Support for execution
int Type;
vtkTypeBool SequentialProcessing;
private:
vtkStaticCellLinksTemplate(const vtkStaticCellLinksTemplate&) = delete;
void operator=(const vtkStaticCellLinksTemplate&) = delete;
};
VTK_ABI_NAMESPACE_END
#include "vtkStaticCellLinksTemplate.txx"
#endif
// VTK-HeaderTest-Exclude: vtkStaticCellLinksTemplate.h
|