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