|
None | __init__ (FRegularGrid grid) |
| Initializes a copy of the FRegularGrid instance grid. More...
|
|
None | __init__ (Math.FGrid data, float xs, float ys, float zs) |
| Initializes the FRegularGrid instance. More...
|
|
None | __init__ (Math.FGrid data, float s) |
| Initializes the FRegularGrid instance. More...
|
|
None | __init__ (float xs, float ys, float zs) |
| Initializes the FRegularGrid instance. More...
|
|
None | __init__ (float s) |
| Initializes the FRegularGrid instance. More...
|
|
None | getCoordinates (int i, int j, int k, object coords) |
|
None | getCoordinates (int i, object coords) |
|
Math.FRegularSpatialGrid | assign (Math.ConstFGridExpression e) |
| Replaces the current state of self with a copy of the state of the ConstFGridExpression instance e. More...
|
|
Math.FRegularSpatialGrid | assign (Math.ConstDGridExpression e) |
| Replaces the current state of self with a copy of the state of the ConstDGridExpression instance e. More...
|
|
Math.FRegularSpatialGrid | assign (object e) |
| Replaces the current state of self with a copy of the state of the object instance e. More...
|
|
Math.FRegularSpatialGrid | assign (Math.FRegularSpatialGrid g) |
| Replaces the current state of self with a copy of the state of the FRegularSpatialGrid instance g. More...
|
|
int | getSize1 () |
|
int | getSize2 () |
|
int | getSize3 () |
|
bool | isEmpty () |
|
float | getElement (int i, int j, int k) |
|
float | getElement (int i) |
|
object | toArray () |
|
int | getSize () |
|
None | swap (Math.FRegularSpatialGrid g) |
|
None | setElement (int i, int j, int k, float v) |
|
None | setElement (int i, float v) |
|
Base.Any | __getitem__ (Base.LookupKey key) |
|
float | __getitem__ (tuple ijk) |
|
float | __getitem__ (int i) |
|
bool | __contains__ (Base.LookupKey key) |
| Returns the result of the membership test operation key in self . More...
|
|
None | __setitem__ (Base.LookupKey key, Base.Any value) |
|
None | __setitem__ (tuple ijk, float v) |
|
None | __setitem__ (int i, float v) |
|
bool | __delitem__ (Base.LookupKey key) |
|
int | __len__ () |
|
float | __call__ (int i, int j, int k) |
|
float | __call__ (int i) |
|
bool | __eq__ (Math.FRegularSpatialGrid g) |
| Returns the result of the comparison operation self == g . More...
|
|
bool | __eq__ (Math.ConstFGridExpression e) |
| Returns the result of the comparison operation self == e . More...
|
|
bool | __ne__ (Math.FRegularSpatialGrid g) |
| Returns the result of the comparison operation self != g . More...
|
|
bool | __ne__ (Math.ConstFGridExpression e) |
| Returns the result of the comparison operation self != e . More...
|
|
str | __str__ () |
| Returns a string representation of the FRegularGrid instance. More...
|
|
Math.FRegularSpatialGrid | __pos__ () |
|
Math.ConstFGridExpression | __neg__ () |
|
Math.ConstFGridExpression | __add__ (Math.ConstFGridExpression e) |
| Returns the result of the addition operation self + e . More...
|
|
Math.ConstFGridExpression | __sub__ (Math.ConstFGridExpression e) |
| Returns the result of the subtraction operation self - e . More...
|
|
Math.ConstFGridExpression | __mul__ (float t) |
| Returns the result of the multiplication operation self * t . More...
|
|
Math.ConstFGridExpression | __div__ (float t) |
| Returns the result of the division operation self / t . More...
|
|
Math.ConstFGridExpression | __truediv__ (float t) |
|
Math.ConstFGridExpression | __rmul__ (float t) |
|
Math.FRegularSpatialGrid | __iadd__ (Math.FRegularSpatialGrid g) |
| Performs the in-place addition operation self += g . More...
|
|
Math.FRegularSpatialGrid | __iadd__ (Math.ConstFGridExpression e) |
| Performs the in-place addition operation self += e . More...
|
|
Math.FRegularSpatialGrid | __isub__ (Math.FRegularSpatialGrid g) |
| Performs the in-place subtraction operation self -= g . More...
|
|
Math.FRegularSpatialGrid | __isub__ (Math.ConstFGridExpression e) |
| Performs the in-place subtraction operation self -= e . More...
|
|
Math.FRegularSpatialGrid | __imul__ (float t) |
| Performs the in-place multiplication operation self *= t . More...
|
|
Math.FRegularSpatialGrid | __idiv__ (float t) |
| Performs the in-place division operation self /= t . More...
|
|
Math.FRegularSpatialGrid | __itruediv__ (float t) |
|
None | __init__ () |
| Initializes the FSpatialGrid instance.
|
|
int | getNumElements () |
|
None | getCoordinates (int i, Math.Vector3F coords) |
|
int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
|
|
int | getNumProperties () |
| Returns the number of property entries. More...
|
|
Any | getPropertyOrDefault (LookupKey key, Any def_value) |
|
list | getPropertyKeys () |
|
list | getPropertyValues () |
|
list | getProperties () |
| Returns a reference to itself. More...
|
|
None | setProperty (LookupKey key, Any value) |
|
bool | removeProperty (LookupKey key) |
| Clears the value of the property specified by key. More...
|
|
Any | getProperty (LookupKey key, bool throw_=False) |
| Returns the value of the property specified by key. More...
|
|
bool | isPropertySet (LookupKey key) |
| Tells whether or not a value has been assigned to the property specified by key. More...
|
|
None | clearProperties () |
| Clears all property values.
|
|
None | addProperties (PropertyContainer cntnr) |
| Adds the property value entries in the PropertyContainer instance cntnr. More...
|
|
None | copyProperties (PropertyContainer cntnr) |
| Replaces the current set of properties by a copy of the entries in cntnr. More...
|
|
None | swap (PropertyContainer cntnr) |
| Exchanges the properties of this container with the properties of the container cntnr. More...
|
|
Any | __getitem__ (LookupKey key) |
|
bool | __contains__ (LookupKey key) |
| Returns the result of the membership test operation key in self . More...
|
|
None | __setitem__ (LookupKey key, Any value) |
|
bool | __delitem__ (LookupKey key) |
|
None | __init__ (FRegularSpatialGrid grid) |
| Initializes a copy of the FRegularSpatialGrid instance grid. More...
|
|
None | __init__ (FGrid data, float xs, float ys, float zs) |
| Initializes the FRegularSpatialGrid instance. More...
|
|
None | __init__ (FGrid data, float s) |
| Initializes the FRegularSpatialGrid instance. More...
|
|
None | resize (int m, int n, int o, bool preserve=True, float v=0.0) |
|
None | clear (float v=0.0) |
|
DataMode | getDataMode () |
|
None | setDataMode (DataMode mode) |
|
float | getXExtent () |
|
float | getYExtent () |
|
float | getZExtent () |
|
float | getXStepSize () |
|
float | getYStepSize () |
|
float | getZStepSize () |
|
None | setXStepSize (float xs) |
|
None | setYStepSize (float ys) |
|
None | setZStepSize (float zs) |
|
FGrid | getData () |
|
None | setCoordinatesTransform (Matrix4F xform) |
|
Matrix4F | getCoordinatesTransform () |
|
None | getLocalCoordinates (int i, int j, int k, object coords) |
|
None | getLocalCoordinates (Vector3F world_coords, object local_coords) |
|
bool | containsPoint (Vector3F pos) |
|
bool | containsPoint (ConstFVectorExpression pos) |
|
bool | containsPoint (Vector3D pos) |
|
bool | containsPoint (ConstDVectorExpression pos) |
|
bool | containsPoint (Vector3L pos) |
|
bool | containsPoint (ConstLVectorExpression pos) |
|
bool | containsPoint (Vector3UL pos) |
|
bool | containsPoint (ConstULVectorExpression pos) |
|
bool | containsLocalPoint (Vector3F pos) |
|
bool | containsLocalPoint (ConstFVectorExpression pos) |
|
bool | containsLocalPoint (Vector3D pos) |
|
bool | containsLocalPoint (ConstDVectorExpression pos) |
|
bool | containsLocalPoint (Vector3L pos) |
|
bool | containsLocalPoint (ConstLVectorExpression pos) |
|
bool | containsLocalPoint (Vector3UL pos) |
|
bool | containsLocalPoint (ConstULVectorExpression pos) |
|
None | getContainingCell (Vector3F pos, object indices) |
|
None | getContainingCell (ConstFVectorExpression pos, object indices) |
|
None | getContainingCell (Vector3D pos, object indices) |
|
None | getContainingCell (ConstDVectorExpression pos, object indices) |
|
None | getContainingCell (Vector3L pos, object indices) |
|
None | getContainingCell (ConstLVectorExpression pos, object indices) |
|
None | getContainingCell (Vector3UL pos, object indices) |
|
None | getContainingCell (ConstULVectorExpression pos, object indices) |
|
None | getLocalContainingCell (Vector3F pos, object indices) |
|
None | getLocalContainingCell (ConstFVectorExpression pos, object indices) |
|
None | getLocalContainingCell (Vector3D pos, object indices) |
|
None | getLocalContainingCell (ConstDVectorExpression pos, object indices) |
|
None | getLocalContainingCell (Vector3L pos, object indices) |
|
None | getLocalContainingCell (ConstLVectorExpression pos, object indices) |
|
None | getLocalContainingCell (Vector3UL pos, object indices) |
|
None | getLocalContainingCell (ConstULVectorExpression pos, object indices) |
|
int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
|
|
FRegularSpatialGrid | assign (ConstFGridExpression e) |
| Replaces the current state of self with a copy of the state of the ConstFGridExpression instance e. More...
|
|
FRegularSpatialGrid | assign (ConstDGridExpression e) |
| Replaces the current state of self with a copy of the state of the ConstDGridExpression instance e. More...
|
|
FRegularSpatialGrid | assign (FRegularSpatialGrid g) |
| Replaces the current state of self with a copy of the state of the FRegularSpatialGrid instance g. More...
|
|
None | swap (FRegularSpatialGrid g) |
|
bool | __eq__ (FRegularSpatialGrid g) |
| Returns the result of the comparison operation self == g . More...
|
|
bool | __eq__ (ConstFGridExpression e) |
| Returns the result of the comparison operation self == e . More...
|
|
bool | __ne__ (FRegularSpatialGrid g) |
| Returns the result of the comparison operation self != g . More...
|
|
bool | __ne__ (ConstFGridExpression e) |
| Returns the result of the comparison operation self != e . More...
|
|
ConstFGridExpression | __add__ (ConstFGridExpression e) |
| Returns the result of the addition operation self + e . More...
|
|
ConstFGridExpression | __sub__ (ConstFGridExpression e) |
| Returns the result of the subtraction operation self - e . More...
|
|
FRegularSpatialGrid | __iadd__ (FRegularSpatialGrid g) |
| Performs the in-place addition operation self += g . More...
|
|
FRegularSpatialGrid | __iadd__ (ConstFGridExpression e) |
| Performs the in-place addition operation self += e . More...
|
|
FRegularSpatialGrid | __isub__ (FRegularSpatialGrid g) |
| Performs the in-place subtraction operation self -= g . More...
|
|
FRegularSpatialGrid | __isub__ (ConstFGridExpression e) |
| Performs the in-place subtraction operation self -= e . More...
|
|