![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
Inheritance diagram for CDPL.Math.FQuaternionVectorAdapter:Public Member Functions | |
| None | __init__ (FQuaternionVectorAdapter a) |
| Initializes a copy of the FQuaternionVectorAdapter instance a. More... | |
| None | __init__ (FQuaternionExpression e) |
| Initializes the FQuaternionVectorAdapter instance. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| FQuaternionVectorAdapter | assign (ConstFVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e. More... | |
| FQuaternionVectorAdapter | assign (ConstDVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e. More... | |
| FQuaternionVectorAdapter | assign (ConstLVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e. More... | |
| FQuaternionVectorAdapter | assign (ConstULVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e. More... | |
| FQuaternionVectorAdapter | assign (FQuaternionVectorAdapter a) |
Replaces the current state of self with a copy of the state of the FQuaternionVectorAdapter instance a. More... | |
| None | assign (object a) |
Replaces the current state of self with a copy of the state of the object instance a. More... | |
| bool | isEmpty () |
| int | getSize () |
| float | getElement (int i) |
| object | toArray () |
| None | swap (FQuaternionVectorAdapter a) |
| None | setElement (int i, float v) |
| FQuaternionExpression | getData () |
| bool | __eq__ (FQuaternionVectorAdapter a) |
Returns the result of the comparison operation self == a. More... | |
| bool | __eq__ (ConstFVectorExpression e) |
Returns the result of the comparison operation self == e. More... | |
| bool | __ne__ (FQuaternionVectorAdapter a) |
Returns the result of the comparison operation self != a. More... | |
| bool | __ne__ (ConstFVectorExpression e) |
Returns the result of the comparison operation self != e. More... | |
| float | __call__ (int i) |
| float | __getitem__ (int i) |
| int | __len__ () |
| str | __str__ () |
| Returns a string representation of the FQuaternionVectorAdapter instance. More... | |
| FQuaternionVectorAdapter | __pos__ () |
| ConstFVectorExpression | __neg__ () |
| ConstFVectorExpression | __add__ (ConstFVectorExpression e) |
Returns the result of the addition operation self + e. More... | |
| ConstFVectorExpression | __sub__ (ConstFVectorExpression e) |
Returns the result of the subtraction operation self - e. More... | |
| ConstFVectorExpression | __mul__ (float t) |
Returns the result of the multiplication operation self * t. More... | |
| ConstFVectorExpression | __mul__ (ConstFMatrixExpression e) |
Returns the result of the multiplication operation self * e. More... | |
| ConstFVectorExpression | __div__ (float t) |
Returns the result of the division operation self / t. More... | |
| ConstFVectorExpression | __truediv__ (float t) |
| ConstFVectorExpression | __rmul__ (float t) |
| None | __setitem__ (int i, float v) |
| FQuaternionVectorAdapter | __iadd__ (FQuaternionVectorAdapter a) |
Performs the in-place addition operation self += a. More... | |
| FQuaternionVectorAdapter | __iadd__ (ConstFVectorExpression e) |
Performs the in-place addition operation self += e. More... | |
| FQuaternionVectorAdapter | __isub__ (FQuaternionVectorAdapter a) |
Performs the in-place subtraction operation self -= a. More... | |
| FQuaternionVectorAdapter | __isub__ (ConstFVectorExpression e) |
Performs the in-place subtraction operation self -= e. More... | |
| FQuaternionVectorAdapter | __imul__ (float t) |
Performs the in-place multiplication operation self *= t. More... | |
| FQuaternionVectorAdapter | __idiv__ (float t) |
Performs the in-place division operation self /= t. More... | |
| FQuaternionVectorAdapter | __itruediv__ (float t) |
Properties | |
| objectID = property(getObjectID) | |
| size = property(getSize) | |
| data = property(getData) | |
| None CDPL.Math.FQuaternionVectorAdapter.__init__ | ( | FQuaternionVectorAdapter | a | ) |
Initializes a copy of the FQuaternionVectorAdapter instance a.
| a | The FQuaternionVectorAdapter instance to copy. |
| None CDPL.Math.FQuaternionVectorAdapter.__init__ | ( | FQuaternionExpression | e | ) |
Initializes the FQuaternionVectorAdapter instance.
| e |
| int CDPL.Math.FQuaternionVectorAdapter.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python FQuaternionVectorAdapter instances may reference the same underlying C++ class instance. The commonly used Python expression a is not b thus cannot tell reliably whether the two FQuaternionVectorAdapter instances a and b reference different C++ objects. The numeric identifier returned by this method allows to correctly implement such an identity test via the simple expression a.getObjectID() != b.getObjectID().
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | ConstFVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e.
| e | The ConstFVectorExpression instance to copy. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | ConstDVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e.
| e | The ConstDVectorExpression instance to copy. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | ConstLVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e.
| e | The ConstLVectorExpression instance to copy. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | ConstULVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e.
| e | The ConstULVectorExpression instance to copy. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | FQuaternionVectorAdapter | a | ) |
Replaces the current state of self with a copy of the state of the FQuaternionVectorAdapter instance a.
| a | The FQuaternionVectorAdapter instance to copy. |
| None CDPL.Math.FQuaternionVectorAdapter.assign | ( | object | a | ) |
Replaces the current state of self with a copy of the state of the object instance a.
| a | The object instance to copy. |
| bool CDPL.Math.FQuaternionVectorAdapter.isEmpty | ( | ) |
| int CDPL.Math.FQuaternionVectorAdapter.getSize | ( | ) |
| float CDPL.Math.FQuaternionVectorAdapter.getElement | ( | int | i | ) |
| i |
| object CDPL.Math.FQuaternionVectorAdapter.toArray | ( | ) |
| None CDPL.Math.FQuaternionVectorAdapter.swap | ( | FQuaternionVectorAdapter | a | ) |
| a |
| None CDPL.Math.FQuaternionVectorAdapter.setElement | ( | int | i, |
| float | v | ||
| ) |
| i | |
| v |
| FQuaternionExpression CDPL.Math.FQuaternionVectorAdapter.getData | ( | ) |
| bool CDPL.Math.FQuaternionVectorAdapter.__eq__ | ( | FQuaternionVectorAdapter | a | ) |
Returns the result of the comparison operation self == a.
| a | The FQuaternionVectorAdapter instance to be compared with. |
| bool CDPL.Math.FQuaternionVectorAdapter.__eq__ | ( | ConstFVectorExpression | e | ) |
Returns the result of the comparison operation self == e.
| e | The ConstFVectorExpression instance to be compared with. |
| bool CDPL.Math.FQuaternionVectorAdapter.__ne__ | ( | FQuaternionVectorAdapter | a | ) |
Returns the result of the comparison operation self != a.
| a | The FQuaternionVectorAdapter instance to be compared with. |
| bool CDPL.Math.FQuaternionVectorAdapter.__ne__ | ( | ConstFVectorExpression | e | ) |
Returns the result of the comparison operation self != e.
| e | The ConstFVectorExpression instance to be compared with. |
| float CDPL.Math.FQuaternionVectorAdapter.__call__ | ( | int | i | ) |
| i |
| float CDPL.Math.FQuaternionVectorAdapter.__getitem__ | ( | int | i | ) |
| i |
| int CDPL.Math.FQuaternionVectorAdapter.__len__ | ( | ) |
| str CDPL.Math.FQuaternionVectorAdapter.__str__ | ( | ) |
Returns a string representation of the FQuaternionVectorAdapter instance.
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__pos__ | ( | ) |
| ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__neg__ | ( | ) |
| ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__add__ | ( | ConstFVectorExpression | e | ) |
Returns the result of the addition operation self + e.
| e | Specifies the second addend. |
ConstFVectorExpression instance holding the result of the addition. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__sub__ | ( | ConstFVectorExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
FQuaternionVectorAdapter instance holding the result of the subtraction. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__mul__ | ( | float | t | ) |
Returns the result of the multiplication operation self * t.
| t | Specifies the multiplier. |
ConstFVectorExpression instance holding the result of the multiplication. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__mul__ | ( | ConstFMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstFVectorExpression instance holding the result of the multiplication. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__div__ | ( | float | t | ) |
Returns the result of the division operation self / t.
| t | Specifies the divisor. |
ConstFVectorExpression instance holding the result of the division. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__truediv__ | ( | float | t | ) |
| t |
| ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__rmul__ | ( | float | t | ) |
| t |
| None CDPL.Math.FQuaternionVectorAdapter.__setitem__ | ( | int | i, |
| float | v | ||
| ) |
| i | |
| v |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__iadd__ | ( | FQuaternionVectorAdapter | a | ) |
Performs the in-place addition operation self += a.
| a | Specifies the second addend. |
FQuaternionVectorAdapter instance self. | FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__iadd__ | ( | ConstFVectorExpression | e | ) |
Performs the in-place addition operation self += e.
| e | Specifies the second addend. |
FQuaternionVectorAdapter instance self. | FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__isub__ | ( | FQuaternionVectorAdapter | a | ) |
Performs the in-place subtraction operation self -= a.
| a | Specifies the subtrahend. |
FQuaternionVectorAdapter instance self. | FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__isub__ | ( | ConstFVectorExpression | e | ) |
Performs the in-place subtraction operation self -= e.
| e | Specifies the subtrahend. |
FQuaternionVectorAdapter instance self. | FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__imul__ | ( | float | t | ) |
Performs the in-place multiplication operation self *= t.
| t | Specifies the multiplier. |
FQuaternionVectorAdapter instance self. | FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__idiv__ | ( | float | t | ) |
Performs the in-place division operation self /= t.
| t | Specifies the divisor. |
FQuaternionVectorAdapter instance self. | FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__itruediv__ | ( | float | t | ) |
| t |