MCPcopy Create free account
hub / github.com/Kitware/VTK / GetCellPoints

Method GetCellPoints

Common/DataModel/vtkExplicitStructuredGrid.cxx:196–202  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

194
195//------------------------------------------------------------------------------
196vtkIdType* vtkExplicitStructuredGrid::GetCellPoints(vtkIdType cellId)
197{
198 vtkIdType unused;
199 const vtkIdType* result;
200 this->Cells->GetCellAtId(cellId, unused, result);
201 return const_cast<vtkIdType*>(result);
202}
203
204//------------------------------------------------------------------------------
205// Get the points defining a cell. (See vtkDataSet for more info.)

Callers 4

FindConnectedFacesMethod · 0.95
ReorderCellsPointsMethod · 0.95
CropMethod · 0.45

Calls 4

SetNumberOfIdsMethod · 0.80
GetCellAtIdMethod · 0.45
ResetMethod · 0.45
SetIdMethod · 0.45

Tested by

no test coverage detected