------------------------------------------------------------------------------
| 101 | |
| 102 | //------------------------------------------------------------------------------ |
| 103 | void vtkCPExodusIIElementBlockImpl::GetCellPoints(vtkIdType cellId, vtkIdList* ptIds) |
| 104 | { |
| 105 | ptIds->SetNumberOfIds(this->CellSize); |
| 106 | |
| 107 | std::transform( |
| 108 | this->GetElementStart(cellId), this->GetElementEnd(cellId), ptIds->GetPointer(0), NodeToPoint); |
| 109 | } |
| 110 | |
| 111 | //------------------------------------------------------------------------------ |
| 112 | void vtkCPExodusIIElementBlockImpl::GetFaceStream( |