#include "SPACE.H"
#include <iostream>
#include "IntVect.H"
#include "Misc.H"
#include "LoHiSide.H"
Include dependency graph for Box.H:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Compounds | |
class | Box |
A Rectangular Domain on an Integer Lattice. More... | |
class | IndexType |
Cell-Based or Node-Based Indices. More... | |
Functions | |
Box | surroundingNodes (const Box &b, int dir) |
Box | surroundingNodes (const Box &b) |
Box | enclosedCells (const Box &b, int dir) |
Box | enclosedCells (const Box &b) |
Box | bdryBox (const Box &b, int dir, Side::LoHiSide a_sd, int len=1) |
Box | bdryLo (const Box &b, int dir, int len=1) |
Box | bdryHi (const Box &b, int dir, int len=1) |
Box | adjCellLo (const Box &b, int dir, int len=1) |
Box | adjCellHi (const Box &b, int dir, int len=1) |
Box | minBox (const Box &b1, const Box &b2) |
Box | grow (const Box &b, int i) |
Box | grow (const Box &b, const IntVect &v) |
|
Returns the cell centered Box of the given length adjacent to the argument Box on the high end along the given coordinate direction. The return Box is identical to the argument Box in the other directions. The return Box and the argument Box have an empty intersection. \ NOTE: len >= 1. \ NOTE: Box retval = adjCellHi(b,dir,len) is equivalent to the following set of operations: \ Box retval(b); \ retval.convert(dir,Box::CELL); \ retval.setrange(dir,retval.bigEnd(dir)+1,len);\ Directions are zero-based. It is an error if not 0 <= dir < SpaceDim. The neighbor of an Empty Box is an Empty Box of the appropriate type. |
|
Returns the cell centered Box of the given length adjacent to the argument Box on the low end along the given coordinate direction. The return Box is identical to the argument Box in the other directions. The return Box and the argument Box have an empty intersection. \ NOTE: len >= 1. \ NOTE: Box retval = adjCellLo(b,dir,len) is equivalent to the following set of operations: \ Box retval(b); \ retval.convert(dir,Box::CELL); \ retval.setrange(dir,retval.smallEnd(dir)-len,len); \ Directions are zero-based. It is an error if not 0 <= dir < SpaceDim. The neighbor of an Empty Box is an Empty Box of the appropriate type. |
|
|
|
Returns the edge-centered Box (in direction dir) defining the high side of the argument Box. The return Box will have the given length in the given direction. Directions are zero-based. It is an error if not 0 <= dir < SpaceDim. The neighbor of an Empty Box is an Empty Box of the appropriate type. |
|
Returns the edge-centered Box (in direction dir) defining the low side of the argument Box. The output Box will have the given length in the given direction. Directions are zero-based. It is an error if not 0 <= dir < SpaceDim. The neighbor of an Empty Box is an Empty Box of the appropriate type. |
|
Returns a Box with CELL based coordinates in all directions that is enclosed by argument Box. The upper corner of the return Box will be one less in all components than the upper corner of the argument Box. The Empty Box is not modified by this function except for changing of type. |
|
Returns a Box with CELL based coordinates in direction dir that is enclosed by argument Box. NOTE: equivalent to b.convert(dir,CELL). NOTE: error if b.type(dir) == CELL. Directions are zero-based. It is an error if not 0 <= dir < SpaceDim. The Empty Box is not modified by this function except for changing of type. |
|
Returns a Box that is the argument Box grown in each direction by specified amount. The Empty Box is not modified by this function. NOTE: components of iv may be negative, which would return a shrunken Box. If shrinking produces an empty Box, the Box is transformed into the canonical Empty Box. |
|
Returns a Box that is the argument Box grown in all directions by given amount. The Empty Box is not modified by this function. NOTE: n negative shrinks the Box by that number of cells. If shrinking produces an empty Box, the Box is transformed into the canonical Empty Box. |
|
Returns a Box that is the minimum Box containing both the argument Boxes. Both Boxes must have identical type. |
|
Returns a Box with NODE based coordinates in all directions that encloses argument Box. The upper corner of the return Box will be one more in all components than the upper corner of the argument Box. The Empty Box is not modified by this function except for changing of type. |
|
Returns a Box with NODE based coordinates in direction dir that encloses the argument Box. NOTE: equivalent to b.convert(dir,NODE). NOTE: error if b.type(dir) == NODE. Directions are zero-based. It is an error if not 0 <= dir < SpaceDim. The Empty Box is not modified by this function except for changing of type. |