|
VTK
|

Go to the source code of this file.
Classes | |
| class | vtkAMRBox |
| Encloses a rectangular region of voxel like cells. More... | |
Functions | |
| template<int dimension> | |
| void | vtkAMRBoxInitialize (int *LoCorner, int *HiCorner, const int *loCorner, const int *hiCorner, vtkAMRBoxInitializeHelp< dimension > *=0) |
| void | Split (const int N[3], const int minSide[3], std::vector< vtkAMRBox > &decomp) |
| void | Split (const int minSide[3], std::vector< vtkAMRBox > &decomp) |
| template<typename T > | |
| void | FillRegion (T *pArray, const vtkAMRBox &arrayRegion, const vtkAMRBox &destRegion, T fillValue) |
| void vtkAMRBoxInitialize | ( | int * | LoCorner, |
| int * | HiCorner, | ||
| const int * | loCorner, | ||
| const int * | hiCorner, | ||
| vtkAMRBoxInitializeHelp< dimension > * | = 0 |
||
| ) |
Definition at line 232 of file vtkAMRBox.h.
| void FillRegion | ( | T * | pArray, |
| const vtkAMRBox & | arrayRegion, | ||
| const vtkAMRBox & | destRegion, | ||
| T | fillValue | ||
| ) |
Fill the region of "pArray" enclosed by "destRegion" with "fillValue" "pArray" is defined on "arrayRegion".
Definition at line 256 of file vtkAMRBox.h.
Split the boxes passed in N times in the i,j and k directions. Once a box is split down to a single cell, or the given minimum side length it won't be split anymore, but it will propagate through the operation.
1.7.5.1