------------------------------------------------------------------------------ Description: The iterator will iterate over the point of a cell \pre cell_exists: cell!=0
| 117 | // The iterator will iterate over the point of a cell |
| 118 | // \pre cell_exists: cell!=0 |
| 119 | void vtkBridgePointIteratorOnCell::InitWithCell(vtkBridgeCell* cell) |
| 120 | { |
| 121 | assert("pre: cell_exists" && cell != nullptr); |
| 122 | |
| 123 | vtkSetObjectBodyMacro(DataSet, vtkBridgeDataSet, cell->DataSet); |
| 124 | this->PtIds = cell->Cell->GetPointIds(); |
| 125 | } |
| 126 | VTK_ABI_NAMESPACE_END |
nothing calls this directly
no test coverage detected