![]() |
Chemical Data Processing Library Python API - Version 1.2.3
|
Inheritance diagram for CDPL.Math.ConstULVectorQuaternionAdapter:Public Member Functions | |
| None | __init__ (ConstULVectorQuaternionAdapter a) |
| Initializes a copy of the ConstULVectorQuaternionAdapter instance a. More... | |
| None | __init__ (ConstULVectorExpression e) |
| Initializes the ConstULVectorQuaternionAdapter instance. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| int | getC1 () |
| int | getC2 () |
| int | getC3 () |
| int | getC4 () |
| object | toArray () |
| ConstULVectorExpression | getData () |
| bool | __eq__ (ConstULVectorQuaternionAdapter a) |
Returns the result of the comparison operation self == a. More... | |
| bool | __eq__ (ConstULQuaternionExpression q) |
Returns the result of the comparison operation self == q. More... | |
| bool | __ne__ (ConstULVectorQuaternionAdapter a) |
Returns the result of the comparison operation self != a. More... | |
| bool | __ne__ (ConstULQuaternionExpression q) |
Returns the result of the comparison operation self != q. More... | |
| str | __str__ () |
| Returns a string representation of the ConstULVectorQuaternionAdapter instance. More... | |
| ConstULVectorQuaternionAdapter | __pos__ () |
| ConstULQuaternionExpression | __neg__ () |
| ConstULQuaternionExpression | __add__ (int t) |
Returns the result of the addition operation self + t. More... | |
| ConstULQuaternionExpression | __add__ (ConstULQuaternionExpression e) |
Returns the result of the addition operation self + e. More... | |
| ConstULQuaternionExpression | __radd__ (int t) |
| ConstULQuaternionExpression | __sub__ (int t) |
Returns the result of the subtraction operation self - t. More... | |
| ConstULQuaternionExpression | __sub__ (ConstULQuaternionExpression e) |
Returns the result of the subtraction operation self - e. More... | |
| ConstULQuaternionExpression | __rsub__ (int t) |
| ConstULQuaternionExpression | __mul__ (int t) |
Returns the result of the multiplication operation self * t. More... | |
| ConstULQuaternionExpression | __mul__ (ConstULQuaternionExpression e) |
Returns the result of the multiplication operation self * e. More... | |
| ConstULQuaternionExpression | __rmul__ (int t) |
| ConstULQuaternionExpression | __div__ (int t) |
Returns the result of the division operation self / t. More... | |
| ConstULQuaternionExpression | __div__ (ConstULQuaternionExpression e) |
Returns the result of the division operation self / e. More... | |
| ConstULQuaternionExpression | __truediv__ (int t) |
| ConstULQuaternionExpression | __rdiv__ (int t) |
Properties | |
| objectID = property(getObjectID) | |
| data = property(getData) | |
| None CDPL.Math.ConstULVectorQuaternionAdapter.__init__ | ( | ConstULVectorQuaternionAdapter | a | ) |
Initializes a copy of the ConstULVectorQuaternionAdapter instance a.
| a | The ConstULVectorQuaternionAdapter instance to copy. |
| None CDPL.Math.ConstULVectorQuaternionAdapter.__init__ | ( | ConstULVectorExpression | e | ) |
Initializes the ConstULVectorQuaternionAdapter instance.
| e |
| int CDPL.Math.ConstULVectorQuaternionAdapter.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python ConstULVectorQuaternionAdapter 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 ConstULVectorQuaternionAdapter 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().
| int CDPL.Math.ConstULVectorQuaternionAdapter.getC1 | ( | ) |
| int CDPL.Math.ConstULVectorQuaternionAdapter.getC2 | ( | ) |
| int CDPL.Math.ConstULVectorQuaternionAdapter.getC3 | ( | ) |
| int CDPL.Math.ConstULVectorQuaternionAdapter.getC4 | ( | ) |
| object CDPL.Math.ConstULVectorQuaternionAdapter.toArray | ( | ) |
| ConstULVectorExpression CDPL.Math.ConstULVectorQuaternionAdapter.getData | ( | ) |
| bool CDPL.Math.ConstULVectorQuaternionAdapter.__eq__ | ( | ConstULVectorQuaternionAdapter | a | ) |
Returns the result of the comparison operation self == a.
| a | The ConstULVectorQuaternionAdapter instance to be compared with. |
| bool CDPL.Math.ConstULVectorQuaternionAdapter.__eq__ | ( | ConstULQuaternionExpression | q | ) |
Returns the result of the comparison operation self == q.
| q | The ConstULQuaternionExpression instance to be compared with. |
| bool CDPL.Math.ConstULVectorQuaternionAdapter.__ne__ | ( | ConstULVectorQuaternionAdapter | a | ) |
Returns the result of the comparison operation self != a.
| a | The ConstULVectorQuaternionAdapter instance to be compared with. |
| bool CDPL.Math.ConstULVectorQuaternionAdapter.__ne__ | ( | ConstULQuaternionExpression | q | ) |
Returns the result of the comparison operation self != q.
| q | The ConstULQuaternionExpression instance to be compared with. |
| str CDPL.Math.ConstULVectorQuaternionAdapter.__str__ | ( | ) |
Returns a string representation of the ConstULVectorQuaternionAdapter instance.
| ConstULVectorQuaternionAdapter CDPL.Math.ConstULVectorQuaternionAdapter.__pos__ | ( | ) |
| ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__neg__ | ( | ) |
| ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__add__ | ( | int | t | ) |
Returns the result of the addition operation self + t.
| t | Specifies the second addend. |
ConstULQuaternionExpression instance holding the result of the addition. | ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__add__ | ( | ConstULQuaternionExpression | e | ) |
Returns the result of the addition operation self + e.
| e | Specifies the second addend. |
ConstULQuaternionExpression instance holding the result of the addition. | ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__radd__ | ( | int | t | ) |
| t |
| ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__sub__ | ( | int | t | ) |
Returns the result of the subtraction operation self - t.
| t | Specifies the subtrahend. |
ConstULVectorQuaternionAdapter instance holding the result of the subtraction. | ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__sub__ | ( | ConstULQuaternionExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
ConstULVectorQuaternionAdapter instance holding the result of the subtraction. | ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__rsub__ | ( | int | t | ) |
| t |
| ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__mul__ | ( | int | t | ) |
Returns the result of the multiplication operation self * t.
| t | Specifies the multiplier. |
ConstULQuaternionExpression instance holding the result of the multiplication. | ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__mul__ | ( | ConstULQuaternionExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstULQuaternionExpression instance holding the result of the multiplication. | ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__rmul__ | ( | int | t | ) |
| t |
| ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__div__ | ( | int | t | ) |
Returns the result of the division operation self / t.
| t | Specifies the divisor. |
ConstULQuaternionExpression instance holding the result of the division. | ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__div__ | ( | ConstULQuaternionExpression | e | ) |
Returns the result of the division operation self / e.
| e | Specifies the divisor. |
ConstULQuaternionExpression instance holding the result of the division. | ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__truediv__ | ( | int | t | ) |
| t |
| ConstULQuaternionExpression CDPL.Math.ConstULVectorQuaternionAdapter.__rdiv__ | ( | int | t | ) |
| t |