| 273 | //----------------------------------------------------------------------------- |
| 274 | template <typename T> |
| 275 | void vtkPixelExtent::SetData(const T* ext) |
| 276 | { |
| 277 | Data[0] = static_cast<int>(ext[0]); |
| 278 | Data[1] = static_cast<int>(ext[1]); |
| 279 | Data[2] = static_cast<int>(ext[2]); |
| 280 | Data[3] = static_cast<int>(ext[3]); |
| 281 | } |
| 282 | |
| 283 | //----------------------------------------------------------------------------- |
| 284 | template <typename T> |
no test coverage detected