|
None | swap (DGridExpression e) |
|
DGridExpression | assign (DGridExpression e) |
| Replaces the current state of self with a copy of the state of the DGridExpression instance e. More...
|
|
DGridExpression | assign (ConstFGridExpression e) |
| Replaces the current state of self with a copy of the state of the ConstFGridExpression instance e. More...
|
|
DGridExpression | assign (ConstDGridExpression e) |
| Replaces the current state of self with a copy of the state of the ConstDGridExpression instance e. More...
|
|
DGridExpression | assign (object e) |
| Replaces the current state of self with a copy of the state of the object instance e. More...
|
|
None | setElement (int i, int j, int k, float v) |
|
None | __setitem__ (tuple ijk, float v) |
|
DGridExpression | __iadd__ (DGridExpression e) |
| Performs the in-place addition operation self += e . More...
|
|
DGridExpression | __iadd__ (ConstDGridExpression e) |
| Performs the in-place addition operation self += e . More...
|
|
DGridExpression | __isub__ (DGridExpression e) |
| Performs the in-place subtraction operation self -= e . More...
|
|
DGridExpression | __isub__ (ConstDGridExpression e) |
| Performs the in-place subtraction operation self -= e . More...
|
|
DGridExpression | __imul__ (float t) |
| Performs the in-place multiplication operation self *= t . More...
|
|
DGridExpression | __idiv__ (float t) |
| Performs the in-place division operation self /= t . More...
|
|
DGridExpression | __itruediv__ (float t) |
|
int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
|
|
int | getSize1 () |
|
int | getSize2 () |
|
int | getSize3 () |
|
bool | isEmpty () |
|
float | getElement (int i, int j, int k) |
|
object | toArray () |
|
float | __call__ (int i, int j, int k) |
|
float | __getitem__ (tuple ijk) |
|
int | __len__ () |
|
bool | __eq__ (ConstDGridExpression e) |
| Returns the result of the comparison operation self == e . More...
|
|
bool | __ne__ (ConstDGridExpression e) |
| Returns the result of the comparison operation self != e . More...
|
|
str | __str__ () |
| Returns a string representation of the ConstDGridExpression instance. More...
|
|
ConstDGridExpression | __pos__ () |
|
ConstDGridExpression | __neg__ () |
|
ConstDGridExpression | __add__ (ConstDGridExpression e) |
| Returns the result of the addition operation self + e . More...
|
|
ConstDGridExpression | __sub__ (ConstDGridExpression e) |
| Returns the result of the subtraction operation self - e . More...
|
|
ConstDGridExpression | __mul__ (float t) |
| Returns the result of the multiplication operation self * t . More...
|
|
ConstDGridExpression | __div__ (float t) |
| Returns the result of the division operation self / t . More...
|
|
ConstDGridExpression | __truediv__ (float t) |
|
ConstDGridExpression | __rmul__ (float t) |
|