Lines Matching refs:cellIds

46   vtkSmartPointer<vtkIdList> cellIds = vtkSmartPointer<vtkIdList>::New();  in GenerateSubdivisionPoints()  local
87 inputDS->GetCellEdgeNeighbors (-1, p1, p2, cellIds); in GenerateSubdivisionPoints()
88 if (cellIds->GetNumberOfIds() == 1) in GenerateSubdivisionPoints()
96 else if (cellIds->GetNumberOfIds() == 2) in GenerateSubdivisionPoints()
104 … ("Dataset is non-manifold and cannot be subdivided. Edge shared by " << cellIds->GetNumberOfIds()… in GenerateSubdivisionPoints()
113 newId = this->FindEdge (inputDS, cellId, p1, p2, edgeData, cellIds); in GenerateSubdivisionPoints()
136 vtkSmartPointer<vtkIdList> cellIds = vtkSmartPointer<vtkIdList>::New(); in GenerateEvenStencil() local
149 polys->GetPointCells (p1, cellIds); in GenerateEvenStencil()
150 vtkIdType numCellsInLoop = cellIds->GetNumberOfIds(); in GenerateEvenStencil()
158 polys->GetCellPoints (cellIds->GetId(0), ptIds); in GenerateEvenStencil()
165 polys->GetCellEdgeNeighbors (-1, p1, p2, cellIds); in GenerateEvenStencil()
167 nextCell = cellIds->GetId(0); in GenerateEvenStencil()
170 if (cellIds->GetNumberOfIds() == 1) in GenerateEvenStencil()
176 startCell = cellIds->GetId(1); in GenerateEvenStencil()
196 polys->GetCellEdgeNeighbors (nextCell, p1, p2, cellIds); in GenerateEvenStencil()
197 if (cellIds->GetNumberOfIds() != 1) in GenerateEvenStencil()
203 nextCell = cellIds->GetId(0); in GenerateEvenStencil()
223 polys->GetCellEdgeNeighbors (nextCell, p1, p2, cellIds); in GenerateEvenStencil()
224 if (cellIds->GetNumberOfIds() != 1) in GenerateEvenStencil()
229 nextCell = cellIds->GetId(0); in GenerateEvenStencil()
274 vtkSmartPointer<vtkIdList> cellIds = vtkSmartPointer<vtkIdList>::New(); in GenerateOddStencil() local
280 polys->GetCellEdgeNeighbors (-1, p1, p2, cellIds); in GenerateOddStencil()
281 cell0 = cellIds->GetId(0); in GenerateOddStencil()
282 cell1 = cellIds->GetId(1); in GenerateOddStencil()