#include <cstddef>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include "SPACE.H"
#include "Vector.H"
#include "Misc.H"
#include "NamespaceHeader.H"
#include "NamespaceFooter.H"
Go to the source code of this file.
Namespaces | |
namespace | BLfacade |
Classes | |
class | IntVect |
An integer Vector in SpaceDim-dimensional space. More... | |
Functions | |
IntVect | operator+ (int s, const IntVect &p) |
IntVect | operator- (int s, const IntVect &p) |
IntVect | operator* (int s, const IntVect &p) |
IntVect | scale (const IntVect &p, int s) |
IntVect | diagShift (const IntVect &p, int s) |
IntVect | min (const IntVect &p1, const IntVect &p2) |
IntVect | max (const IntVect &p1, const IntVect &p2) |
Variables | |
static int | s_dummyForIntVectH = IntVect::InitStatics() |
Returns an IntVect that is an IntVect p with a scalar s added to each component.
References IntVect::IntVect().
Returns s - p.
References IntVect::IntVect().
Returns an IntVect that is an IntVect p with each component multiplied by a scalar s.
References IntVect::IntVect().
Returns an IntVect obtained by multiplying each of the components of the given IntVect by a scalar.
References IntVect::IntVect().
Returns IntVect obtained by adding a scalar to each of the components of the given IntVect.
References IntVect::IntVect().
Returns the IntVect that is the component-wise minimum of two argument IntVects.
References IntVect::min(), and IntVect::p().
Returns the IntVect that is the component-wise maximum of two argument IntVects.
References IntVect::max(), and IntVect::p().
int s_dummyForIntVectH = IntVect::InitStatics() [static] |