------------------------------------------------------------------------------ Fast implementation of GetCellBounds(). Bounds are calculated without constructing a cell.
| 131 | // Fast implementation of GetCellBounds(). Bounds are calculated without |
| 132 | // constructing a cell. |
| 133 | void vtkStructuredGrid::GetCellBounds(vtkIdType cellId, double bounds[6]) |
| 134 | { |
| 135 | vtkIdType npts, pts[8]; |
| 136 | this->StructuredCells->GetCellAtId(cellId, npts, pts); |
| 137 | vtkBoundingBox::ComputeBounds(this->Points, pts, npts, bounds); |
| 138 | } |
| 139 | |
| 140 | //------------------------------------------------------------------------------ |
| 141 | int vtkStructuredGrid::GetCellType(vtkIdType cellId) |
nothing calls this directly
no test coverage detected