![]() |
Chemical Data Processing Library Python API - Version 1.4.0
|
Quaternion expression that exposes a 4-element vector as a quaternion (component indices 0-3 map to C1-C4). More...
Inheritance diagram for CDPL.Math.DVectorQuaternionAdapter:Public Member Functions | |
| None | __init__ (DVectorQuaternionAdapter a) |
Initializes a copy of the DVectorQuaternionAdapter instance a. More... | |
| None | __init__ (DVectorExpression e) |
Initializes the DVectorQuaternionAdapter instance. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| DVectorQuaternionAdapter | assign (ConstFQuaternionExpression e) |
| Assigns the quaternion expression e to this view without intermediate temporary (use only when e does not alias the wrapped vector). More... | |
| DVectorQuaternionAdapter | assign (ConstDQuaternionExpression e) |
| Assigns the quaternion expression e to this view without intermediate temporary (use only when e does not alias the wrapped vector). More... | |
| DVectorQuaternionAdapter | assign (ConstLQuaternionExpression e) |
| Assigns the quaternion expression e to this view without intermediate temporary (use only when e does not alias the wrapped vector). More... | |
| DVectorQuaternionAdapter | assign (ConstULQuaternionExpression e) |
| Assigns the quaternion expression e to this view without intermediate temporary (use only when e does not alias the wrapped vector). More... | |
| DVectorQuaternionAdapter | assign (DVectorQuaternionAdapter a) |
| Copies the components of a into this view (writing through to the wrapped vector). More... | |
| float | getC1 () |
| Returns a reference to component C1. More... | |
| float | getC2 () |
| Returns a reference to component C2. More... | |
| float | getC3 () |
| Returns a reference to component C3. More... | |
| float | getC4 () |
| Returns a reference to component C4. More... | |
| object | toArray () |
| None | swap (DVectorQuaternionAdapter a) |
| Swaps the components of this view with those of a. 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) |
| Assigns the four supplied component values to this view (writing through to the wrapped vector). More... | |
| DVectorExpression | getData () |
| Returns a reference to the wrapped vector (via its stored closure). More... | |
| bool | __eq__ (DVectorQuaternionAdapter 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__ (DVectorQuaternionAdapter 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 DVectorQuaternionAdapter instance. More... | |
| DVectorQuaternionAdapter | __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) |
Returns the result of the multiplication operation t * self. More... | |
| 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) |
Returns the result of the true division operation self / t. More... | |
| ConstDQuaternionExpression | __rdiv__ (float t) |
| DVectorQuaternionAdapter | __iadd__ (float t) |
| Adds the scalar t to component C1 of this view. More... | |
| DVectorQuaternionAdapter | __iadd__ (DVectorQuaternionAdapter a) |
Performs the in-place addition operation self += a. More... | |
| DVectorQuaternionAdapter | __iadd__ (ConstDQuaternionExpression q) |
Performs the in-place addition operation self += q. More... | |
| DVectorQuaternionAdapter | __isub__ (float t) |
| Subtracts the scalar t from component C1 of this view. More... | |
| DVectorQuaternionAdapter | __isub__ (DVectorQuaternionAdapter a) |
Performs the in-place subtraction operation self -= a. More... | |
| DVectorQuaternionAdapter | __isub__ (ConstDQuaternionExpression q) |
Performs the in-place subtraction operation self -= q. More... | |
| DVectorQuaternionAdapter | __imul__ (float t) |
| Multiplies every component of this view by the scalar t. More... | |
| DVectorQuaternionAdapter | __imul__ (DVectorQuaternionAdapter a) |
Performs the in-place multiplication operation self *= a. More... | |
| DVectorQuaternionAdapter | __imul__ (ConstDQuaternionExpression q) |
Performs the in-place multiplication operation self *= q. More... | |
| DVectorQuaternionAdapter | __idiv__ (float t) |
| Divides every component of this view by the scalar t. More... | |
| DVectorQuaternionAdapter | __idiv__ (DVectorQuaternionAdapter a) |
Performs the in-place division operation self /= a. More... | |
| DVectorQuaternionAdapter | __idiv__ (ConstDQuaternionExpression q) |
Performs the in-place division operation self /= q. More... | |
| DVectorQuaternionAdapter | __itruediv__ (float t) |
| DVectorQuaternionAdapter | __itruediv__ (DVectorQuaternionAdapter a) |
| DVectorQuaternionAdapter | __itruediv__ (ConstDQuaternionExpression q) |
Properties | |
| objectID = property(getObjectID) | |
| data = property(getData) | |
Quaternion expression that exposes a 4-element vector as a quaternion (component indices 0-3 map to C1-C4).
| None CDPL.Math.DVectorQuaternionAdapter.__init__ | ( | DVectorQuaternionAdapter | a | ) |
Initializes a copy of the DVectorQuaternionAdapter instance a.
| a | The DVectorQuaternionAdapter instance to copy. |
| None CDPL.Math.DVectorQuaternionAdapter.__init__ | ( | DVectorExpression | e | ) |
Initializes the DVectorQuaternionAdapter instance.
| e |
| int CDPL.Math.DVectorQuaternionAdapter.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python DVectorQuaternionAdapter 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 DVectorQuaternionAdapter 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().
| DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.assign | ( | ConstFQuaternionExpression | e | ) |
Assigns the quaternion expression e to this view without intermediate temporary (use only when e does not alias the wrapped vector).
| e | The source quaternion expression. |
| DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.assign | ( | ConstDQuaternionExpression | e | ) |
Assigns the quaternion expression e to this view without intermediate temporary (use only when e does not alias the wrapped vector).
| e | The source quaternion expression. |
| DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.assign | ( | ConstLQuaternionExpression | e | ) |
Assigns the quaternion expression e to this view without intermediate temporary (use only when e does not alias the wrapped vector).
| e | The source quaternion expression. |
| DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.assign | ( | ConstULQuaternionExpression | e | ) |
Assigns the quaternion expression e to this view without intermediate temporary (use only when e does not alias the wrapped vector).
| e | The source quaternion expression. |
| DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.assign | ( | DVectorQuaternionAdapter | a | ) |
Copies the components of a into this view (writing through to the wrapped vector).
| a | The source adapter. |
| float CDPL.Math.DVectorQuaternionAdapter.getC1 | ( | ) |
Returns a reference to component C1.
| float CDPL.Math.DVectorQuaternionAdapter.getC2 | ( | ) |
Returns a reference to component C2.
| float CDPL.Math.DVectorQuaternionAdapter.getC3 | ( | ) |
Returns a reference to component C3.
| float CDPL.Math.DVectorQuaternionAdapter.getC4 | ( | ) |
Returns a reference to component C4.
| None CDPL.Math.DVectorQuaternionAdapter.swap | ( | DVectorQuaternionAdapter | a | ) |
Swaps the components of this view with those of a.
| a | The adapter to swap with. |
| None CDPL.Math.DVectorQuaternionAdapter.set | ( | float | c1 = 0.0, |
| float | c2 = 0.0, |
||
| float | c3 = 0.0, |
||
| float | c4 = 0.0 |
||
| ) |
Assigns the four supplied component values to this view (writing through to the wrapped vector).
| c1 | The C1 component value. |
| c2 | The C2 component value. |
| c3 | The C3 component value. |
| c4 | The C4 component value. |
| DVectorExpression CDPL.Math.DVectorQuaternionAdapter.getData | ( | ) |
Returns a reference to the wrapped vector (via its stored closure).
| bool CDPL.Math.DVectorQuaternionAdapter.__eq__ | ( | DVectorQuaternionAdapter | a | ) |
Returns the result of the comparison operation self == a.
| a | The DVectorQuaternionAdapter instance to be compared with. |
| bool CDPL.Math.DVectorQuaternionAdapter.__eq__ | ( | ConstDQuaternionExpression | q | ) |
Returns the result of the comparison operation self == q.
| q | The ConstDQuaternionExpression instance to be compared with. |
| bool CDPL.Math.DVectorQuaternionAdapter.__ne__ | ( | DVectorQuaternionAdapter | a | ) |
Returns the result of the comparison operation self != a.
| a | The DVectorQuaternionAdapter instance to be compared with. |
| bool CDPL.Math.DVectorQuaternionAdapter.__ne__ | ( | ConstDQuaternionExpression | q | ) |
Returns the result of the comparison operation self != q.
| q | The ConstDQuaternionExpression instance to be compared with. |
| str CDPL.Math.DVectorQuaternionAdapter.__str__ | ( | ) |
Returns a string representation of the DVectorQuaternionAdapter instance.
| ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__add__ | ( | float | t | ) |
Returns the result of the addition operation self + t.
| t | Specifies the second addend. |
ConstDQuaternionExpression instance holding the result of the addition. | ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__add__ | ( | ConstDQuaternionExpression | e | ) |
Returns the result of the addition operation self + e.
| e | Specifies the second addend. |
ConstDQuaternionExpression instance holding the result of the addition. | ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__sub__ | ( | float | t | ) |
Returns the result of the subtraction operation self - t.
| t | Specifies the subtrahend. |
DVectorQuaternionAdapter instance holding the result of the subtraction. | ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__sub__ | ( | ConstDQuaternionExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
DVectorQuaternionAdapter instance holding the result of the subtraction. | ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__mul__ | ( | float | t | ) |
Returns the result of the multiplication operation self * t.
| t | Specifies the multiplier. |
ConstDQuaternionExpression instance holding the result of the multiplication. | ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__mul__ | ( | ConstDQuaternionExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstDQuaternionExpression instance holding the result of the multiplication. | ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__rmul__ | ( | float | t | ) |
Returns the result of the multiplication operation t * self.
| t | Specifies the multiplicand. |
ConstDQuaternionExpression instance holding the result of the multiplication. | ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__div__ | ( | float | t | ) |
Returns the result of the division operation self // t.
| t | Specifies the divisor. |
ConstDQuaternionExpression instance holding the result of the division. | ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__div__ | ( | ConstDQuaternionExpression | e | ) |
Returns the result of the division operation self // e.
| e | Specifies the divisor. |
ConstDQuaternionExpression instance holding the result of the division. | ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__truediv__ | ( | float | t | ) |
Returns the result of the true division operation self / t.
| t | Specifies the divisor. |
ConstDQuaternionExpression instance holding the result of the division. | DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__iadd__ | ( | float | t | ) |
Adds the scalar t to component C1 of this view.
| t | The scalar summand. |
| DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__iadd__ | ( | DVectorQuaternionAdapter | a | ) |
Performs the in-place addition operation self += a.
| a | Specifies the second addend. |
DVectorQuaternionAdapter instance self. | DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__iadd__ | ( | ConstDQuaternionExpression | q | ) |
Performs the in-place addition operation self += q.
| q | Specifies the second addend. |
DVectorQuaternionAdapter instance self. | DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__isub__ | ( | float | t | ) |
Subtracts the scalar t from component C1 of this view.
| t | The scalar subtrahend. |
| DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__isub__ | ( | DVectorQuaternionAdapter | a | ) |
Performs the in-place subtraction operation self -= a.
| a | Specifies the subtrahend. |
DVectorQuaternionAdapter instance self. | DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__isub__ | ( | ConstDQuaternionExpression | q | ) |
Performs the in-place subtraction operation self -= q.
| q | Specifies the subtrahend. |
DVectorQuaternionAdapter instance self. | DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__imul__ | ( | float | t | ) |
Multiplies every component of this view by the scalar t.
| t | The scalar multiplier. |
| DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__imul__ | ( | DVectorQuaternionAdapter | a | ) |
Performs the in-place multiplication operation self *= a.
| a | Specifies the multiplier. |
DVectorQuaternionAdapter instance self. | DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__imul__ | ( | ConstDQuaternionExpression | q | ) |
Performs the in-place multiplication operation self *= q.
| q | Specifies the multiplier. |
DVectorQuaternionAdapter instance self. | DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__idiv__ | ( | float | t | ) |
Divides every component of this view by the scalar t.
| t | The scalar divisor. |
| DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__idiv__ | ( | DVectorQuaternionAdapter | a | ) |
Performs the in-place division operation self /= a.
| a | Specifies the divisor. |
DVectorQuaternionAdapter instance self. | DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__idiv__ | ( | ConstDQuaternionExpression | q | ) |
Performs the in-place division operation self /= q.
| q | Specifies the divisor. |
DVectorQuaternionAdapter instance self.