![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
Inheritance diagram for CDPL.Math.LQuaternionVectorAdapter:Public Member Functions | |
| None | __init__ (LQuaternionVectorAdapter a) |
| Initializes a copy of the LQuaternionVectorAdapter instance a. More... | |
| None | __init__ (LQuaternionExpression e) |
| Initializes the LQuaternionVectorAdapter instance. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| LQuaternionVectorAdapter | assign (ConstFVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e. More... | |
| LQuaternionVectorAdapter | assign (ConstDVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e. More... | |
| LQuaternionVectorAdapter | assign (ConstLVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e. More... | |
| LQuaternionVectorAdapter | assign (ConstULVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e. More... | |
| LQuaternionVectorAdapter | assign (LQuaternionVectorAdapter a) |
Replaces the current state of self with a copy of the state of the LQuaternionVectorAdapter 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 () |
| int | getElement (int i) |
| object | toArray () |
| None | swap (LQuaternionVectorAdapter a) |
| None | setElement (int i, int v) |
| LQuaternionExpression | getData () |
| bool | __eq__ (LQuaternionVectorAdapter a) |
Returns the result of the comparison operation self == a. More... | |
| bool | __eq__ (ConstLVectorExpression e) |
Returns the result of the comparison operation self == e. More... | |
| bool | __ne__ (LQuaternionVectorAdapter a) |
Returns the result of the comparison operation self != a. More... | |
| bool | __ne__ (ConstLVectorExpression e) |
Returns the result of the comparison operation self != e. More... | |
| int | __call__ (int i) |
| int | __getitem__ (int i) |
| int | __len__ () |
| str | __str__ () |
| Returns a string representation of the LQuaternionVectorAdapter instance. More... | |
| LQuaternionVectorAdapter | __pos__ () |
| ConstLVectorExpression | __neg__ () |
| ConstLVectorExpression | __add__ (ConstLVectorExpression e) |
Returns the result of the addition operation self + e. More... | |
| ConstLVectorExpression | __sub__ (ConstLVectorExpression e) |
Returns the result of the subtraction operation self - e. More... | |
| ConstLVectorExpression | __mul__ (int t) |
Returns the result of the multiplication operation self * t. More... | |
| ConstLVectorExpression | __mul__ (ConstLMatrixExpression e) |
Returns the result of the multiplication operation self * e. More... | |
| ConstLVectorExpression | __div__ (int t) |
Returns the result of the division operation self / t. More... | |
| ConstLVectorExpression | __truediv__ (int t) |
| ConstLVectorExpression | __rmul__ (int t) |
| None | __setitem__ (int i, int v) |
| LQuaternionVectorAdapter | __iadd__ (LQuaternionVectorAdapter a) |
Performs the in-place addition operation self += a. More... | |
| LQuaternionVectorAdapter | __iadd__ (ConstLVectorExpression e) |
Performs the in-place addition operation self += e. More... | |
| LQuaternionVectorAdapter | __isub__ (LQuaternionVectorAdapter a) |
Performs the in-place subtraction operation self -= a. More... | |
| LQuaternionVectorAdapter | __isub__ (ConstLVectorExpression e) |
Performs the in-place subtraction operation self -= e. More... | |
| LQuaternionVectorAdapter | __imul__ (int t) |
Performs the in-place multiplication operation self *= t. More... | |
| LQuaternionVectorAdapter | __idiv__ (int t) |
Performs the in-place division operation self /= t. More... | |
| LQuaternionVectorAdapter | __itruediv__ (int t) |
Properties | |
| objectID = property(getObjectID) | |
| size = property(getSize) | |
| data = property(getData) | |
| None CDPL.Math.LQuaternionVectorAdapter.__init__ | ( | LQuaternionVectorAdapter | a | ) |
Initializes a copy of the LQuaternionVectorAdapter instance a.
| a | The LQuaternionVectorAdapter instance to copy. |
| None CDPL.Math.LQuaternionVectorAdapter.__init__ | ( | LQuaternionExpression | e | ) |
Initializes the LQuaternionVectorAdapter instance.
| e |
| int CDPL.Math.LQuaternionVectorAdapter.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python LQuaternionVectorAdapter 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 LQuaternionVectorAdapter 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().
| LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.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. |
| LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.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. |
| LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.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. |
| LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.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. |
| LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.assign | ( | LQuaternionVectorAdapter | a | ) |
Replaces the current state of self with a copy of the state of the LQuaternionVectorAdapter instance a.
| a | The LQuaternionVectorAdapter instance to copy. |
| None CDPL.Math.LQuaternionVectorAdapter.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.LQuaternionVectorAdapter.isEmpty | ( | ) |
| int CDPL.Math.LQuaternionVectorAdapter.getSize | ( | ) |
| int CDPL.Math.LQuaternionVectorAdapter.getElement | ( | int | i | ) |
| i |
| object CDPL.Math.LQuaternionVectorAdapter.toArray | ( | ) |
| None CDPL.Math.LQuaternionVectorAdapter.swap | ( | LQuaternionVectorAdapter | a | ) |
| a |
| None CDPL.Math.LQuaternionVectorAdapter.setElement | ( | int | i, |
| int | v | ||
| ) |
| i | |
| v |
| LQuaternionExpression CDPL.Math.LQuaternionVectorAdapter.getData | ( | ) |
| bool CDPL.Math.LQuaternionVectorAdapter.__eq__ | ( | LQuaternionVectorAdapter | a | ) |
Returns the result of the comparison operation self == a.
| a | The LQuaternionVectorAdapter instance to be compared with. |
| bool CDPL.Math.LQuaternionVectorAdapter.__eq__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the comparison operation self == e.
| e | The ConstLVectorExpression instance to be compared with. |
| bool CDPL.Math.LQuaternionVectorAdapter.__ne__ | ( | LQuaternionVectorAdapter | a | ) |
Returns the result of the comparison operation self != a.
| a | The LQuaternionVectorAdapter instance to be compared with. |
| bool CDPL.Math.LQuaternionVectorAdapter.__ne__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the comparison operation self != e.
| e | The ConstLVectorExpression instance to be compared with. |
| int CDPL.Math.LQuaternionVectorAdapter.__call__ | ( | int | i | ) |
| i |
| int CDPL.Math.LQuaternionVectorAdapter.__getitem__ | ( | int | i | ) |
| i |
| int CDPL.Math.LQuaternionVectorAdapter.__len__ | ( | ) |
| str CDPL.Math.LQuaternionVectorAdapter.__str__ | ( | ) |
Returns a string representation of the LQuaternionVectorAdapter instance.
| LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.__pos__ | ( | ) |
| ConstLVectorExpression CDPL.Math.LQuaternionVectorAdapter.__neg__ | ( | ) |
| ConstLVectorExpression CDPL.Math.LQuaternionVectorAdapter.__add__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the addition operation self + e.
| e | Specifies the second addend. |
ConstLVectorExpression instance holding the result of the addition. | ConstLVectorExpression CDPL.Math.LQuaternionVectorAdapter.__sub__ | ( | ConstLVectorExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
LQuaternionVectorAdapter instance holding the result of the subtraction. | ConstLVectorExpression CDPL.Math.LQuaternionVectorAdapter.__mul__ | ( | int | t | ) |
Returns the result of the multiplication operation self * t.
| t | Specifies the multiplier. |
ConstLVectorExpression instance holding the result of the multiplication. | ConstLVectorExpression CDPL.Math.LQuaternionVectorAdapter.__mul__ | ( | ConstLMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstLVectorExpression instance holding the result of the multiplication. | ConstLVectorExpression CDPL.Math.LQuaternionVectorAdapter.__div__ | ( | int | t | ) |
Returns the result of the division operation self / t.
| t | Specifies the divisor. |
ConstLVectorExpression instance holding the result of the division. | ConstLVectorExpression CDPL.Math.LQuaternionVectorAdapter.__truediv__ | ( | int | t | ) |
| t |
| ConstLVectorExpression CDPL.Math.LQuaternionVectorAdapter.__rmul__ | ( | int | t | ) |
| t |
| None CDPL.Math.LQuaternionVectorAdapter.__setitem__ | ( | int | i, |
| int | v | ||
| ) |
| i | |
| v |
| LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.__iadd__ | ( | LQuaternionVectorAdapter | a | ) |
Performs the in-place addition operation self += a.
| a | Specifies the second addend. |
LQuaternionVectorAdapter instance self. | LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.__iadd__ | ( | ConstLVectorExpression | e | ) |
Performs the in-place addition operation self += e.
| e | Specifies the second addend. |
LQuaternionVectorAdapter instance self. | LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.__isub__ | ( | LQuaternionVectorAdapter | a | ) |
Performs the in-place subtraction operation self -= a.
| a | Specifies the subtrahend. |
LQuaternionVectorAdapter instance self. | LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.__isub__ | ( | ConstLVectorExpression | e | ) |
Performs the in-place subtraction operation self -= e.
| e | Specifies the subtrahend. |
LQuaternionVectorAdapter instance self. | LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.__imul__ | ( | int | t | ) |
Performs the in-place multiplication operation self *= t.
| t | Specifies the multiplier. |
LQuaternionVectorAdapter instance self. | LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.__idiv__ | ( | int | t | ) |
Performs the in-place division operation self /= t.
| t | Specifies the divisor. |
LQuaternionVectorAdapter instance self. | LQuaternionVectorAdapter CDPL.Math.LQuaternionVectorAdapter.__itruediv__ | ( | int | t | ) |
| t |