LoAdSG
MultiDimCompass Class Reference

#include <index.h>

Detailed Description

Richtung fuer 3^d stencil

Example: Print nextTwoStencil of indexNow; i.e. if indexNow = (0.25,0.25), then the code prints:

(0.25,0.25),(0.25,0.75),(0.75,0.25),(0.75,0.75)

IndexDimension indexNow;
for(MultiDimCompass mc;mc.goon();++mc) {
IndexDimension J = indexNow.nextTwoStep(&mc, T);
J.PrintCoord();
cout << endl;
}
Definition index.h:356

Richtung fuer 3^d stencil

Example: Print nextTwoStencil of indexNow; i.e. if indexNow = (0.25,0.25), then the code prints:

(0.25,0.25),(0.25,0.75),(0.75,0.25),(0.75,0.75)

IndexDimension indexNow;
for(MultiDimCompass mc;mc.hasNext();++mc) {
IndexDimension J = indexNow.nextTwoStep(&mc, T);
J.PrintCoord();
cout << endl;
}

The documentation for this class was generated from the following files: