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