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