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