![]() |
Chemical Data Processing Library Python API - Version 1.4.0
|
General 4-component quaternion with component values of type float.
More...
Inheritance diagram for CDPL.Math.FQuaternion:Public Member Functions | |
| None | __init__ () |
| Constructs an uninitialized quaternion. | |
| None | __init__ (FQuaternion q) |
| Constructs a copy of the quaternion q. More... | |
| None | __init__ (float c1, float c2=0.0, float c3=0.0, float c4=0.0) |
| Constructs the quaternion with the supplied component values (omitted components default to the value-initialized ValueType). More... | |
| None | __init__ (ConstFQuaternionExpression e) |
Initializes the FQuaternion instance. More... | |
| None | __init__ (ConstDQuaternionExpression e) |
Initializes the FQuaternion instance. More... | |
| None | __init__ (ConstLQuaternionExpression e) |
Initializes the FQuaternion instance. More... | |
| None | __init__ (ConstULQuaternionExpression e) |
Initializes the FQuaternion instance. More... | |
| None | __init__ (object a) |
Initializes the FQuaternion instance. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| FQuaternion | assign (ConstFQuaternionExpression e) |
| Assigns the quaternion expression e to this quaternion without intermediate temporary. More... | |
| FQuaternion | assign (ConstDQuaternionExpression e) |
| Assigns the quaternion expression e to this quaternion without intermediate temporary. More... | |
| FQuaternion | assign (ConstLQuaternionExpression e) |
| Assigns the quaternion expression e to this quaternion without intermediate temporary. More... | |
| FQuaternion | assign (ConstULQuaternionExpression e) |
| Assigns the quaternion expression e to this quaternion without intermediate temporary. More... | |
| FQuaternion | assign (FQuaternion q) |
| Copy-assigns the components of q to this quaternion. 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 () |
| Returns a reference to the real component C1. More... | |
| float | getC2 () |
| Returns a reference to the imaginary component C2. More... | |
| float | getC3 () |
| Returns a reference to the imaginary component C3. More... | |
| float | getC4 () |
| Returns a reference to the imaginary component C4. More... | |
| object | toArray () |
| None | swap (FQuaternion q) |
| Swaps the four components of this quaternion with those of q. More... | |
| 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) |
| Sets the four quaternion components to the supplied values (omitted arguments default to the value-initialized ValueType). More... | |
| bool | __eq__ (FQuaternion q) |
Returns the result of the comparison operation self == q. More... | |
| bool | __eq__ (ConstFQuaternionExpression q) |
Returns the result of the comparison operation self == q. More... | |
| bool | __ne__ (FQuaternion q) |
Returns the result of the comparison operation self != q. More... | |
| bool | __ne__ (ConstFQuaternionExpression q) |
Returns the result of the comparison operation self != q. More... | |
| str | __str__ () |
Returns a string representation of the FQuaternion instance. More... | |
| FQuaternion | __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) |
Returns the result of the multiplication operation t * self. More... | |
| 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) |
Returns the result of the true division operation self / t. More... | |
| ConstFQuaternionExpression | __rdiv__ (float t) |
| FQuaternion | __iadd__ (float t) |
| Adds the scalar t to the real component. More... | |
| FQuaternion | __iadd__ (FQuaternion q) |
Performs the in-place addition operation self += q. More... | |
| FQuaternion | __iadd__ (ConstFQuaternionExpression q) |
Performs the in-place addition operation self += q. More... | |
| FQuaternion | __isub__ (float t) |
| Subtracts the scalar t from the real component. More... | |
| FQuaternion | __isub__ (FQuaternion q) |
Performs the in-place subtraction operation self -= q. More... | |
| FQuaternion | __isub__ (ConstFQuaternionExpression q) |
Performs the in-place subtraction operation self -= q. More... | |
| FQuaternion | __imul__ (float t) |
| Multiplies every component by the scalar t. More... | |
| FQuaternion | __imul__ (FQuaternion q) |
Performs the in-place multiplication operation self *= q. More... | |
| FQuaternion | __imul__ (ConstFQuaternionExpression q) |
Performs the in-place multiplication operation self *= q. More... | |
| FQuaternion | __idiv__ (float t) |
| Divides every component by the scalar t. More... | |
| FQuaternion | __idiv__ (FQuaternion q) |
Performs the in-place division operation self /= q. More... | |
| FQuaternion | __idiv__ (ConstFQuaternionExpression q) |
Performs the in-place division operation self /= q. More... | |
| FQuaternion | __itruediv__ (float t) |
| FQuaternion | __itruediv__ (FQuaternion q) |
| FQuaternion | __itruediv__ (ConstFQuaternionExpression q) |
Properties | |
| objectID = property(getObjectID) | |
General 4-component quaternion with component values of type float.
| None CDPL.Math.FQuaternion.__init__ | ( | FQuaternion | q | ) |
Constructs a copy of the quaternion q.
| q | The quaternion to copy. |
| None CDPL.Math.FQuaternion.__init__ | ( | float | c1, |
| float | c2 = 0.0, |
||
| float | c3 = 0.0, |
||
| float | c4 = 0.0 |
||
| ) |
Constructs the quaternion with the supplied component values (omitted components default to the value-initialized ValueType).
| c1 | The real component. |
| c2 | The first imaginary component. |
| c3 | The second imaginary component. |
| c4 | The third imaginary component. |
| None CDPL.Math.FQuaternion.__init__ | ( | ConstFQuaternionExpression | e | ) |
Initializes the FQuaternion instance.
| e |
| None CDPL.Math.FQuaternion.__init__ | ( | ConstDQuaternionExpression | e | ) |
Initializes the FQuaternion instance.
| e |
| None CDPL.Math.FQuaternion.__init__ | ( | ConstLQuaternionExpression | e | ) |
Initializes the FQuaternion instance.
| e |
| None CDPL.Math.FQuaternion.__init__ | ( | ConstULQuaternionExpression | e | ) |
Initializes the FQuaternion instance.
| e |
| None CDPL.Math.FQuaternion.__init__ | ( | object | a | ) |
Initializes the FQuaternion instance.
| a |
| int CDPL.Math.FQuaternion.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python FQuaternion 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 FQuaternion 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().
| FQuaternion CDPL.Math.FQuaternion.assign | ( | ConstFQuaternionExpression | e | ) |
Assigns the quaternion expression e to this quaternion without intermediate temporary.
| e | The source quaternion expression. |
| FQuaternion CDPL.Math.FQuaternion.assign | ( | ConstDQuaternionExpression | e | ) |
Assigns the quaternion expression e to this quaternion without intermediate temporary.
| e | The source quaternion expression. |
| FQuaternion CDPL.Math.FQuaternion.assign | ( | ConstLQuaternionExpression | e | ) |
Assigns the quaternion expression e to this quaternion without intermediate temporary.
| e | The source quaternion expression. |
| FQuaternion CDPL.Math.FQuaternion.assign | ( | ConstULQuaternionExpression | e | ) |
Assigns the quaternion expression e to this quaternion without intermediate temporary.
| e | The source quaternion expression. |
| FQuaternion CDPL.Math.FQuaternion.assign | ( | FQuaternion | q | ) |
Copy-assigns the components of q to this quaternion.
| q | The source quaternion. |
| None CDPL.Math.FQuaternion.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.FQuaternion.getC1 | ( | ) |
Returns a reference to the real component C1.
| float CDPL.Math.FQuaternion.getC2 | ( | ) |
Returns a reference to the imaginary component C2.
| float CDPL.Math.FQuaternion.getC3 | ( | ) |
Returns a reference to the imaginary component C3.
| float CDPL.Math.FQuaternion.getC4 | ( | ) |
Returns a reference to the imaginary component C4.
| None CDPL.Math.FQuaternion.swap | ( | FQuaternion | q | ) |
Swaps the four components of this quaternion with those of q.
| q | The quaternion to swap with. |
| None CDPL.Math.FQuaternion.set | ( | float | c1 = 0.0, |
| float | c2 = 0.0, |
||
| float | c3 = 0.0, |
||
| float | c4 = 0.0 |
||
| ) |
Sets the four quaternion components to the supplied values (omitted arguments default to the value-initialized ValueType).
| c1 | The new real component. |
| c2 | The new first imaginary component. |
| c3 | The new second imaginary component. |
| c4 | The new third imaginary component. |
| bool CDPL.Math.FQuaternion.__eq__ | ( | FQuaternion | q | ) |
Returns the result of the comparison operation self == q.
| q | The FQuaternion instance to be compared with. |
| bool CDPL.Math.FQuaternion.__eq__ | ( | ConstFQuaternionExpression | q | ) |
Returns the result of the comparison operation self == q.
| q | The ConstFQuaternionExpression instance to be compared with. |
| bool CDPL.Math.FQuaternion.__ne__ | ( | FQuaternion | q | ) |
Returns the result of the comparison operation self != q.
| q | The FQuaternion instance to be compared with. |
| bool CDPL.Math.FQuaternion.__ne__ | ( | ConstFQuaternionExpression | q | ) |
Returns the result of the comparison operation self != q.
| q | The ConstFQuaternionExpression instance to be compared with. |
| str CDPL.Math.FQuaternion.__str__ | ( | ) |
Returns a string representation of the FQuaternion instance.
| ConstFQuaternionExpression CDPL.Math.FQuaternion.__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.FQuaternion.__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.FQuaternion.__sub__ | ( | float | t | ) |
Returns the result of the subtraction operation self - t.
| t | Specifies the subtrahend. |
FQuaternion instance holding the result of the subtraction. | ConstFQuaternionExpression CDPL.Math.FQuaternion.__sub__ | ( | ConstFQuaternionExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
FQuaternion instance holding the result of the subtraction. | ConstFQuaternionExpression CDPL.Math.FQuaternion.__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.FQuaternion.__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.FQuaternion.__rmul__ | ( | float | t | ) |
Returns the result of the multiplication operation t * self.
| t | Specifies the multiplicand. |
ConstFQuaternionExpression instance holding the result of the multiplication. | ConstFQuaternionExpression CDPL.Math.FQuaternion.__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.FQuaternion.__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.FQuaternion.__truediv__ | ( | float | t | ) |
Returns the result of the true division operation self / t.
| t | Specifies the divisor. |
ConstFQuaternionExpression instance holding the result of the division. | FQuaternion CDPL.Math.FQuaternion.__iadd__ | ( | float | t | ) |
Adds the scalar t to the real component.
| t | The scalar addend. |
| FQuaternion CDPL.Math.FQuaternion.__iadd__ | ( | FQuaternion | q | ) |
Performs the in-place addition operation self += q.
| q | Specifies the second addend. |
FQuaternion instance self. | FQuaternion CDPL.Math.FQuaternion.__iadd__ | ( | ConstFQuaternionExpression | q | ) |
Performs the in-place addition operation self += q.
| q | Specifies the second addend. |
FQuaternion instance self. | FQuaternion CDPL.Math.FQuaternion.__isub__ | ( | float | t | ) |
Subtracts the scalar t from the real component.
| t | The scalar subtrahend. |
| FQuaternion CDPL.Math.FQuaternion.__isub__ | ( | FQuaternion | q | ) |
Performs the in-place subtraction operation self -= q.
| q | Specifies the subtrahend. |
FQuaternion instance self. | FQuaternion CDPL.Math.FQuaternion.__isub__ | ( | ConstFQuaternionExpression | q | ) |
Performs the in-place subtraction operation self -= q.
| q | Specifies the subtrahend. |
FQuaternion instance self. | FQuaternion CDPL.Math.FQuaternion.__imul__ | ( | float | t | ) |
Multiplies every component by the scalar t.
| t | The scalar multiplier. |
| FQuaternion CDPL.Math.FQuaternion.__imul__ | ( | FQuaternion | q | ) |
Performs the in-place multiplication operation self *= q.
| q | Specifies the multiplier. |
FQuaternion instance self. | FQuaternion CDPL.Math.FQuaternion.__imul__ | ( | ConstFQuaternionExpression | q | ) |
Performs the in-place multiplication operation self *= q.
| q | Specifies the multiplier. |
FQuaternion instance self. | FQuaternion CDPL.Math.FQuaternion.__idiv__ | ( | float | t | ) |
Divides every component by the scalar t.
| t | The scalar divisor. |
| FQuaternion CDPL.Math.FQuaternion.__idiv__ | ( | FQuaternion | q | ) |
Performs the in-place division operation self /= q.
| q | Specifies the divisor. |
FQuaternion instance self. | FQuaternion CDPL.Math.FQuaternion.__idiv__ | ( | ConstFQuaternionExpression | q | ) |
Performs the in-place division operation self /= q.
| q | Specifies the divisor. |
FQuaternion instance self.