Home
last modified time | relevance | path

Searched refs:vtkCellLinks (Results 1 – 25 of 32) sorted by relevance

12

/dports/math/vtk9/VTK-9.1.0/Common/DataModel/
H A DvtkCellLinks.cxx26 vtkStandardNewMacro(vtkCellLinks);
29 vtkCellLinks::~vtkCellLinks() in ~vtkCellLinks()
36 void vtkCellLinks::Initialize() in Initialize()
59 this->Array = new vtkCellLinks::Link[sz]; in Allocate()
71 void vtkCellLinks::AllocateLinks(vtkIdType n) in AllocateLinks()
81 void vtkCellLinks::Squeeze() in Squeeze()
87 void vtkCellLinks::Reset() in Reset()
96 vtkCellLinks::Link* vtkCellLinks::Resize(vtkIdType sz) in Resize()
99 vtkCellLinks::Link* newArray; in Resize()
112 newArray = new vtkCellLinks::Link[newSize]; in Resize()
[all …]
H A DvtkCellLinks.h45 class VTKCOMMONDATAMODEL_EXPORT vtkCellLinks : public vtkAbstractCellLinks
59 static vtkCellLinks* New();
60 vtkTypeMacro(vtkCellLinks, vtkAbstractCellLinks);
172 vtkCellLinks() in vtkCellLinks() function
181 ~vtkCellLinks() override;
206 vtkCellLinks(const vtkCellLinks&) = delete;
207 void operator=(const vtkCellLinks&) = delete;
217 inline void vtkCellLinks::DeletePoint(vtkIdType ptId) in DeletePoint()
231 inline void vtkCellLinks::RemoveCellReference(vtkIdType cellId, vtkIdType ptId) in RemoveCellReference()
251 inline void vtkCellLinks::AddCellReference(vtkIdType cellId, vtkIdType ptId) in AddCellReference()
[all …]
H A DvtkUnstructuredGrid.cxx1451 vtkNew<vtkCellLinks> links; in BuildLinks()
1477 vtkCellLinks* links = static_cast<vtkCellLinks*>(this->Links.Get()); in GetPointCells()
1661 vtkCellLinks* links = static_cast<vtkCellLinks*>(this->Links.Get()); in GetPointCells()
1745 static_cast<vtkCellLinks*>(this->Links.Get())->RemoveCellReference(cellId, ptId); in RemoveReferenceToCell()
1756 static_cast<vtkCellLinks*>(this->Links.Get())->AddCellReference(cellId, ptId); in AddReferenceToCell()
1765 static_cast<vtkCellLinks*>(this->Links.Get())->ResizeCellList(ptId, size); in ResizeCellList()
1789 vtkCellLinks* clinks = static_cast<vtkCellLinks*>(this->Links.Get()); in InsertNextLinkedCell()
2099 vtkCellLinks* links = static_cast<vtkCellLinks*>(this->Links.Get()); in IsCellBoundary()
2100 return IsCellBoundaryImp<vtkCellLinks>(links, cellId, npts, pts); in IsCellBoundary()
2134 vtkCellLinks* links = static_cast<vtkCellLinks*>(this->Links.Get()); in GetCellNeighbors()
[all …]
H A DvtkExplicitStructuredGrid.cxx247 vtkCellLinks* links = static_cast<vtkCellLinks*>(this->Links); in GetPointCells()
539 this->Links = vtkCellLinks::New(); in BuildLinks()
540 static_cast<vtkCellLinks*>(this->Links)->Allocate(this->GetNumberOfPoints()); in BuildLinks()
H A DvtkHyperTreeGrid.h74 class vtkCellLinks; variable
H A DvtkPolyData.cxx985 this->Links = vtkSmartPointer<vtkCellLinks>::New(); in BuildLinks()
1295 const vtkCellLinks::Link& link1(this->Links->GetLink(p1)); in GetCellEdgeNeighbors()
1296 const vtkCellLinks::Link& link2(this->Links->GetLink(p2)); in GetCellEdgeNeighbors()
H A DvtkPolyData.h704 vtkSmartPointer<vtkCellLinks> Links;
/dports/math/vtk8/VTK-8.2.0/Common/DataModel/
H A DvtkCellLinks.cxx23 vtkStandardNewMacro(vtkCellLinks);
26 vtkCellLinks::~vtkCellLinks() in ~vtkCellLinks()
32 void vtkCellLinks::Initialize() in Initialize()
53 this->Array = new vtkCellLinks::Link[sz]; in Allocate()
65 void vtkCellLinks::AllocateLinks(vtkIdType n) in AllocateLinks()
75 void vtkCellLinks::Squeeze() in Squeeze()
82 void vtkCellLinks::Reset() in Reset()
91 vtkCellLinks::Link *vtkCellLinks::Resize(vtkIdType sz) in Resize()
94 vtkCellLinks::Link *newArray; in Resize()
96 vtkCellLinks::Link linkInit = {0,nullptr}; in Resize()
[all …]
H A DvtkCellLinks.h58 static vtkCellLinks *New();
59 vtkTypeMacro(vtkCellLinks,vtkAbstractCellLinks);
162 void DeepCopy(vtkCellLinks *src);
165 vtkCellLinks():Array(nullptr),Size(0),MaxId(-1),Extend(1000) {} in vtkCellLinks() function
166 ~vtkCellLinks() override;
188 vtkCellLinks(const vtkCellLinks&) = delete;
189 void operator=(const vtkCellLinks&) = delete;
193 inline void vtkCellLinks::InsertCellReference(vtkIdType ptId, in InsertCellReference()
201 inline void vtkCellLinks::DeletePoint(vtkIdType ptId) in DeletePoint()
209 inline void vtkCellLinks::InsertNextCellReference(vtkIdType ptId, in InsertNextCellReference()
[all …]
H A DvtkUnstructuredGrid.h34 class vtkCellLinks; variable
126 vtkCellLinks *GetCellLinks() {return this->Links;}; in GetCellLinks()
385 vtkCellLinks *Links;
H A DvtkHyperTreeGrid.h57 class vtkCellLinks; variable
843 vtkCellLinks* Links;
H A DvtkPolyData.h566 vtkCellLinks *Links;
H A DvtkPolyData.cxx1083 this->Links = vtkCellLinks::New(); in BuildLinks()
1612 const vtkCellLinks::Link &link1(this->Links->GetLink(p1)); in GetCellEdgeNeighbors()
1613 const vtkCellLinks::Link &link2(this->Links->GetLink(p2)); in GetCellEdgeNeighbors()
/dports/math/vtk6/VTK-6.2.0/Common/DataModel/
H A DvtkCellLinks.cxx23 vtkStandardNewMacro(vtkCellLinks);
32 this->Array = new vtkCellLinks::Link[sz]; in Allocate()
43 vtkCellLinks::~vtkCellLinks() in ~vtkCellLinks()
60 void vtkCellLinks::AllocateLinks(vtkIdType n) in AllocateLinks()
70 void vtkCellLinks::Squeeze() in Squeeze()
77 void vtkCellLinks::Reset() in Reset()
86 vtkCellLinks::Link *vtkCellLinks::Resize(vtkIdType sz) in Resize()
89 vtkCellLinks::Link *newArray; in Resize()
91 vtkCellLinks::Link linkInit = {0,NULL}; in Resize()
102 newArray = new vtkCellLinks::Link[newSize]; in Resize()
[all …]
H A DvtkCellLinks.h33 class VTKCOMMONDATAMODEL_EXPORT vtkCellLinks : public vtkObject
45 static vtkCellLinks *New();
46 vtkTypeMacro(vtkCellLinks,vtkObject);
126 void DeepCopy(vtkCellLinks *src);
129 vtkCellLinks():Array(NULL),Size(0),MaxId(-1),Extend(1000) {} in vtkCellLinks() function
130 ~vtkCellLinks();
149 vtkCellLinks(const vtkCellLinks&); // Not implemented.
150 void operator=(const vtkCellLinks&); // Not implemented.
154 inline void vtkCellLinks::InsertCellReference(vtkIdType ptId, in InsertCellReference()
162 inline void vtkCellLinks::DeletePoint(vtkIdType ptId) in DeletePoint()
[all …]
H A DvtkUnstructuredGrid.h31 class vtkCellLinks; variable
142 vtkCellLinks *GetCellLinks() {return this->Links;}; in GetCellLinks()
360 vtkCellLinks *Links;
H A DvtkHyperOctree.h138 class vtkCellLinks; variable
547 vtkCellLinks* Links;
H A DvtkHyperTreeGrid.h49 class vtkCellLinks; variable
431 vtkCellLinks* Links;
H A DvtkPolyData.h460 vtkCellLinks *Links;
H A DvtkPolyData.cxx1042 this->Links = vtkCellLinks::New(); in BuildLinks()
1594 const vtkCellLinks::Link &link1(this->Links->GetLink(p1)); in GetCellEdgeNeighbors()
1595 const vtkCellLinks::Link &link2(this->Links->GetLink(p2)); in GetCellEdgeNeighbors()
/dports/math/vtk9/VTK-9.1.0/Filters/Core/
H A DvtkDelaunay3D.cxx210 vtkCellLinks* links = static_cast<vtkCellLinks*>(Mesh->GetCellLinks()); in FindEnclosingFaces()
1096 vtkCellLinks* links = static_cast<vtkCellLinks*>(Mesh->GetCellLinks()); in GetTetraFaceNeighbor()
/dports/math/vtk8/VTK-8.2.0/Filters/Selection/
H A DvtkCellDistanceSelector.cxx147 vtkCellLinks * links = nullptr; in RequestData()
/dports/math/vtk6/VTK-6.2.0/Filters/Selection/
H A DvtkCellDistanceSelector.cxx149 vtkCellLinks * links = 0; in RequestData()
/dports/math/vtk8/VTK-8.2.0/Filters/Core/
H A DvtkDelaunay3D.cxx212 vtkCellLinks *links = Mesh->GetCellLinks(); in FindEnclosingFaces()
1080 vtkCellLinks *links = Mesh->GetCellLinks(); in GetTetraFaceNeighbor()
/dports/math/vtk6/VTK-6.2.0/Filters/Core/
H A DvtkDelaunay3D.cxx212 vtkCellLinks *links = Mesh->GetCellLinks(); in FindEnclosingFaces()
1080 vtkCellLinks *links = Mesh->GetCellLinks(); in GetTetraFaceNeighbor()

12