Chemical Data Processing Library Python API - Version 1.1.1
|
Public Member Functions | |
None | __init__ () |
Initializes the DQuaternion instance. | |
None | __init__ (DQuaternion q) |
Initializes a copy of the DQuaternion instance q. More... | |
None | __init__ (float c1, float c2=0.0, float c3=0.0, float c4=0.0) |
Initializes the DQuaternion instance. More... | |
None | __init__ (ConstFQuaternionExpression e) |
Initializes the DQuaternion instance. More... | |
None | __init__ (ConstDQuaternionExpression e) |
Initializes the DQuaternion instance. More... | |
None | __init__ (ConstLQuaternionExpression e) |
Initializes the DQuaternion instance. More... | |
None | __init__ (ConstULQuaternionExpression e) |
Initializes the DQuaternion instance. More... | |
None | __init__ (object a) |
Initializes the DQuaternion instance. More... | |
int | getObjectID () |
Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
DQuaternion | assign (ConstFQuaternionExpression e) |
Replaces the current state of self with a copy of the state of the ConstFQuaternionExpression instance e. More... | |
DQuaternion | assign (ConstDQuaternionExpression e) |
Replaces the current state of self with a copy of the state of the ConstDQuaternionExpression instance e. More... | |
DQuaternion | assign (ConstLQuaternionExpression e) |
Replaces the current state of self with a copy of the state of the ConstLQuaternionExpression instance e. More... | |
DQuaternion | assign (ConstULQuaternionExpression e) |
Replaces the current state of self with a copy of the state of the ConstULQuaternionExpression instance e. More... | |
DQuaternion | assign (DQuaternion q) |
Replaces the current state of self with a copy of the state of the DQuaternion instance q. More... | |
None | assign (object a) |
Replaces the current state of self with a copy of the state of the object instance a. More... | |
float | getC1 () |
float | getC2 () |
float | getC3 () |
float | getC4 () |
object | toArray () |
None | swap (DQuaternion q) |
None | setC1 (float v) |
None | setC2 (float v) |
None | setC3 (float v) |
None | setC4 (float v) |
None | set (float c1=0.0, float c2=0.0, float c3=0.0, float c4=0.0) |
bool | __eq__ (DQuaternion q) |
Returns the result of the comparison operation self == q . More... | |
bool | __eq__ (ConstDQuaternionExpression q) |
Returns the result of the comparison operation self == q . More... | |
bool | __ne__ (DQuaternion q) |
Returns the result of the comparison operation self != q . More... | |
bool | __ne__ (ConstDQuaternionExpression q) |
Returns the result of the comparison operation self != q . More... | |
str | __str__ () |
Returns a string representation of the DQuaternion instance. More... | |
DQuaternion | __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) |
DQuaternion | __iadd__ (float t) |
Performs the in-place addition operation self += t . More... | |
DQuaternion | __iadd__ (DQuaternion q) |
Performs the in-place addition operation self += q . More... | |
DQuaternion | __iadd__ (ConstDQuaternionExpression q) |
Performs the in-place addition operation self += q . More... | |
DQuaternion | __isub__ (float t) |
Performs the in-place subtraction operation self -= t . More... | |
DQuaternion | __isub__ (DQuaternion q) |
Performs the in-place subtraction operation self -= q . More... | |
DQuaternion | __isub__ (ConstDQuaternionExpression q) |
Performs the in-place subtraction operation self -= q . More... | |
DQuaternion | __imul__ (float t) |
Performs the in-place multiplication operation self *= t . More... | |
DQuaternion | __imul__ (DQuaternion q) |
Performs the in-place multiplication operation self *= q . More... | |
DQuaternion | __imul__ (ConstDQuaternionExpression q) |
Performs the in-place multiplication operation self *= q . More... | |
DQuaternion | __idiv__ (float t) |
Performs the in-place division operation self /= t . More... | |
DQuaternion | __idiv__ (DQuaternion q) |
Performs the in-place division operation self /= q . More... | |
DQuaternion | __idiv__ (ConstDQuaternionExpression q) |
Performs the in-place division operation self /= q . More... | |
DQuaternion | __itruediv__ (float t) |
DQuaternion | __itruediv__ (DQuaternion q) |
DQuaternion | __itruediv__ (ConstDQuaternionExpression q) |
Properties | |
objectID = property(getObjectID) | |
None CDPL.Math.DQuaternion.__init__ | ( | DQuaternion | q | ) |
Initializes a copy of the DQuaternion instance q.
q | The DQuaternion instance to copy. |
None CDPL.Math.DQuaternion.__init__ | ( | float | c1, |
float | c2 = 0.0 , |
||
float | c3 = 0.0 , |
||
float | c4 = 0.0 |
||
) |
Initializes the DQuaternion instance.
c1 | |
c2 | |
c3 | |
c4 |
None CDPL.Math.DQuaternion.__init__ | ( | ConstFQuaternionExpression | e | ) |
Initializes the DQuaternion instance.
e |
None CDPL.Math.DQuaternion.__init__ | ( | ConstDQuaternionExpression | e | ) |
Initializes the DQuaternion instance.
e |
None CDPL.Math.DQuaternion.__init__ | ( | ConstLQuaternionExpression | e | ) |
Initializes the DQuaternion instance.
e |
None CDPL.Math.DQuaternion.__init__ | ( | ConstULQuaternionExpression | e | ) |
Initializes the DQuaternion instance.
e |
None CDPL.Math.DQuaternion.__init__ | ( | object | a | ) |
Initializes the DQuaternion instance.
a |
int CDPL.Math.DQuaternion.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python DQuaternion 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 DQuaternion 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()
.
DQuaternion CDPL.Math.DQuaternion.assign | ( | ConstFQuaternionExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstFQuaternionExpression instance e.
e | The ConstFQuaternionExpression instance to copy. |
DQuaternion CDPL.Math.DQuaternion.assign | ( | ConstDQuaternionExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstDQuaternionExpression instance e.
e | The ConstDQuaternionExpression instance to copy. |
DQuaternion CDPL.Math.DQuaternion.assign | ( | ConstLQuaternionExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstLQuaternionExpression instance e.
e | The ConstLQuaternionExpression instance to copy. |
DQuaternion CDPL.Math.DQuaternion.assign | ( | ConstULQuaternionExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstULQuaternionExpression instance e.
e | The ConstULQuaternionExpression instance to copy. |
DQuaternion CDPL.Math.DQuaternion.assign | ( | DQuaternion | q | ) |
Replaces the current state of self with a copy of the state of the DQuaternion instance q.
q | The DQuaternion instance to copy. |
None CDPL.Math.DQuaternion.assign | ( | object | a | ) |
Replaces the current state of self with a copy of the state of the object instance a.
a | The object instance to copy. |
float CDPL.Math.DQuaternion.getC1 | ( | ) |
float CDPL.Math.DQuaternion.getC2 | ( | ) |
float CDPL.Math.DQuaternion.getC3 | ( | ) |
float CDPL.Math.DQuaternion.getC4 | ( | ) |
object CDPL.Math.DQuaternion.toArray | ( | ) |
None CDPL.Math.DQuaternion.swap | ( | DQuaternion | q | ) |
q |
None CDPL.Math.DQuaternion.setC1 | ( | float | v | ) |
v |
None CDPL.Math.DQuaternion.setC2 | ( | float | v | ) |
v |
None CDPL.Math.DQuaternion.setC3 | ( | float | v | ) |
v |
None CDPL.Math.DQuaternion.setC4 | ( | float | v | ) |
v |
None CDPL.Math.DQuaternion.set | ( | float | c1 = 0.0 , |
float | c2 = 0.0 , |
||
float | c3 = 0.0 , |
||
float | c4 = 0.0 |
||
) |
c1 | |
c2 | |
c3 | |
c4 |
bool CDPL.Math.DQuaternion.__eq__ | ( | DQuaternion | q | ) |
Returns the result of the comparison operation self == q
.
q | The DQuaternion instance to be compared with. |
bool CDPL.Math.DQuaternion.__eq__ | ( | ConstDQuaternionExpression | q | ) |
Returns the result of the comparison operation self == q
.
q | The ConstDQuaternionExpression instance to be compared with. |
bool CDPL.Math.DQuaternion.__ne__ | ( | DQuaternion | q | ) |
Returns the result of the comparison operation self != q
.
q | The DQuaternion instance to be compared with. |
bool CDPL.Math.DQuaternion.__ne__ | ( | ConstDQuaternionExpression | q | ) |
Returns the result of the comparison operation self != q
.
q | The ConstDQuaternionExpression instance to be compared with. |
str CDPL.Math.DQuaternion.__str__ | ( | ) |
Returns a string representation of the DQuaternion instance.
DQuaternion CDPL.Math.DQuaternion.__pos__ | ( | ) |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__neg__ | ( | ) |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__add__ | ( | float | t | ) |
Returns the result of the addition operation self + t
.
t | Specifies the second addend. |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__add__ | ( | ConstDQuaternionExpression | e | ) |
Returns the result of the addition operation self + e
.
e | Specifies the second addend. |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__radd__ | ( | float | t | ) |
t |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__sub__ | ( | float | t | ) |
Returns the result of the subtraction operation self - t
.
t | Specifies the subtrahend. |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__sub__ | ( | ConstDQuaternionExpression | e | ) |
Returns the result of the subtraction operation self - e
.
e | Specifies the subtrahend. |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__rsub__ | ( | float | t | ) |
t |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__mul__ | ( | float | t | ) |
Returns the result of the multiplication operation self * t
.
t | Specifies the multiplier. |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__mul__ | ( | ConstDQuaternionExpression | e | ) |
Returns the result of the multiplication operation self * e
.
e | Specifies the multiplier. |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__rmul__ | ( | float | t | ) |
t |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__div__ | ( | float | t | ) |
Returns the result of the division operation self / t
.
t | Specifies the divisor. |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__div__ | ( | ConstDQuaternionExpression | e | ) |
Returns the result of the division operation self / e
.
e | Specifies the divisor. |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__truediv__ | ( | float | t | ) |
t |
ConstDQuaternionExpression CDPL.Math.DQuaternion.__rdiv__ | ( | float | t | ) |
t |
DQuaternion CDPL.Math.DQuaternion.__iadd__ | ( | float | t | ) |
Performs the in-place addition operation self += t
.
t | Specifies the second addend. |
DQuaternion CDPL.Math.DQuaternion.__iadd__ | ( | DQuaternion | q | ) |
Performs the in-place addition operation self += q
.
q | Specifies the second addend. |
DQuaternion CDPL.Math.DQuaternion.__iadd__ | ( | ConstDQuaternionExpression | q | ) |
Performs the in-place addition operation self += q
.
q | Specifies the second addend. |
DQuaternion CDPL.Math.DQuaternion.__isub__ | ( | float | t | ) |
Performs the in-place subtraction operation self -= t
.
t | Specifies the subtrahend. |
DQuaternion CDPL.Math.DQuaternion.__isub__ | ( | DQuaternion | q | ) |
Performs the in-place subtraction operation self -= q
.
q | Specifies the subtrahend. |
DQuaternion CDPL.Math.DQuaternion.__isub__ | ( | ConstDQuaternionExpression | q | ) |
Performs the in-place subtraction operation self -= q
.
q | Specifies the subtrahend. |
DQuaternion CDPL.Math.DQuaternion.__imul__ | ( | float | t | ) |
Performs the in-place multiplication operation self *= t
.
t | Specifies the multiplier. |
DQuaternion CDPL.Math.DQuaternion.__imul__ | ( | DQuaternion | q | ) |
Performs the in-place multiplication operation self *= q
.
q | Specifies the multiplier. |
DQuaternion CDPL.Math.DQuaternion.__imul__ | ( | ConstDQuaternionExpression | q | ) |
Performs the in-place multiplication operation self *= q
.
q | Specifies the multiplier. |
DQuaternion CDPL.Math.DQuaternion.__idiv__ | ( | float | t | ) |
Performs the in-place division operation self /= t
.
t | Specifies the divisor. |
DQuaternion CDPL.Math.DQuaternion.__idiv__ | ( | DQuaternion | q | ) |
Performs the in-place division operation self /= q
.
q | Specifies the divisor. |
DQuaternion CDPL.Math.DQuaternion.__idiv__ | ( | ConstDQuaternionExpression | q | ) |
Performs the in-place division operation self /= q
.
q | Specifies the divisor. |
DQuaternion CDPL.Math.DQuaternion.__itruediv__ | ( | float | t | ) |
t |
DQuaternion CDPL.Math.DQuaternion.__itruediv__ | ( | DQuaternion | q | ) |
q |
DQuaternion CDPL.Math.DQuaternion.__itruediv__ | ( | ConstDQuaternionExpression | q | ) |
q |