![]() |
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.LVectorQuaternionAdapter:Public Member Functions | |
| None | __init__ (LVectorQuaternionAdapter a) |
Initializes a copy of the LVectorQuaternionAdapter instance a. More... | |
| None | __init__ (LVectorExpression e) |
Initializes the LVectorQuaternionAdapter instance. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| LVectorQuaternionAdapter | 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... | |
| LVectorQuaternionAdapter | 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... | |
| LVectorQuaternionAdapter | 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... | |
| LVectorQuaternionAdapter | 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... | |
| LVectorQuaternionAdapter | assign (LVectorQuaternionAdapter a) |
| Copies the components of a into this view (writing through to the wrapped vector). More... | |
| int | getC1 () |
| Returns a reference to component C1. More... | |
| int | getC2 () |
| Returns a reference to component C2. More... | |
| int | getC3 () |
| Returns a reference to component C3. More... | |
| int | getC4 () |
| Returns a reference to component C4. More... | |
| object | toArray () |
| None | swap (LVectorQuaternionAdapter a) |
| Swaps the components of this view with those of a. More... | |
| None | setC1 (int v) |
| None | setC2 (int v) |
| None | setC3 (int v) |
| None | setC4 (int v) |
| None | set (int c1=0, int c2=0, int c3=0, int c4=0) |
| Assigns the four supplied component values to this view (writing through to the wrapped vector). More... | |
| LVectorExpression | getData () |
| Returns a reference to the wrapped vector (via its stored closure). More... | |
| bool | __eq__ (LVectorQuaternionAdapter 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__ (LVectorQuaternionAdapter 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 LVectorQuaternionAdapter instance. More... | |
| LVectorQuaternionAdapter | __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) |
Returns the result of the multiplication operation t * self. More... | |
| 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) |
Returns the result of the true division operation self / t. More... | |
| ConstLQuaternionExpression | __rdiv__ (int t) |
| LVectorQuaternionAdapter | __iadd__ (int t) |
| Adds the scalar t to component C1 of this view. More... | |
| LVectorQuaternionAdapter | __iadd__ (LVectorQuaternionAdapter a) |
Performs the in-place addition operation self += a. More... | |
| LVectorQuaternionAdapter | __iadd__ (ConstLQuaternionExpression q) |
Performs the in-place addition operation self += q. More... | |
| LVectorQuaternionAdapter | __isub__ (int t) |
| Subtracts the scalar t from component C1 of this view. More... | |
| LVectorQuaternionAdapter | __isub__ (LVectorQuaternionAdapter a) |
Performs the in-place subtraction operation self -= a. More... | |
| LVectorQuaternionAdapter | __isub__ (ConstLQuaternionExpression q) |
Performs the in-place subtraction operation self -= q. More... | |
| LVectorQuaternionAdapter | __imul__ (int t) |
| Multiplies every component of this view by the scalar t. More... | |
| LVectorQuaternionAdapter | __imul__ (LVectorQuaternionAdapter a) |
Performs the in-place multiplication operation self *= a. More... | |
| LVectorQuaternionAdapter | __imul__ (ConstLQuaternionExpression q) |
Performs the in-place multiplication operation self *= q. More... | |
| LVectorQuaternionAdapter | __idiv__ (int t) |
| Divides every component of this view by the scalar t. More... | |
| LVectorQuaternionAdapter | __idiv__ (LVectorQuaternionAdapter a) |
Performs the in-place division operation self /= a. More... | |
| LVectorQuaternionAdapter | __idiv__ (ConstLQuaternionExpression q) |
Performs the in-place division operation self /= q. More... | |
| LVectorQuaternionAdapter | __itruediv__ (int t) |
| LVectorQuaternionAdapter | __itruediv__ (LVectorQuaternionAdapter a) |
| LVectorQuaternionAdapter | __itruediv__ (ConstLQuaternionExpression 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.LVectorQuaternionAdapter.__init__ | ( | LVectorQuaternionAdapter | a | ) |
Initializes a copy of the LVectorQuaternionAdapter instance a.
| a | The LVectorQuaternionAdapter instance to copy. |
| None CDPL.Math.LVectorQuaternionAdapter.__init__ | ( | LVectorExpression | e | ) |
Initializes the LVectorQuaternionAdapter instance.
| e |
| int CDPL.Math.LVectorQuaternionAdapter.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python LVectorQuaternionAdapter 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 LVectorQuaternionAdapter 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().
| LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.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. |
| LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.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. |
| LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.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. |
| LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.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. |
| LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.assign | ( | LVectorQuaternionAdapter | a | ) |
Copies the components of a into this view (writing through to the wrapped vector).
| a | The source adapter. |
| int CDPL.Math.LVectorQuaternionAdapter.getC1 | ( | ) |
Returns a reference to component C1.
| int CDPL.Math.LVectorQuaternionAdapter.getC2 | ( | ) |
Returns a reference to component C2.
| int CDPL.Math.LVectorQuaternionAdapter.getC3 | ( | ) |
Returns a reference to component C3.
| int CDPL.Math.LVectorQuaternionAdapter.getC4 | ( | ) |
Returns a reference to component C4.
| None CDPL.Math.LVectorQuaternionAdapter.swap | ( | LVectorQuaternionAdapter | a | ) |
Swaps the components of this view with those of a.
| a | The adapter to swap with. |
| None CDPL.Math.LVectorQuaternionAdapter.set | ( | int | c1 = 0, |
| int | c2 = 0, |
||
| int | c3 = 0, |
||
| int | c4 = 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. |
| LVectorExpression CDPL.Math.LVectorQuaternionAdapter.getData | ( | ) |
Returns a reference to the wrapped vector (via its stored closure).
| bool CDPL.Math.LVectorQuaternionAdapter.__eq__ | ( | LVectorQuaternionAdapter | a | ) |
Returns the result of the comparison operation self == a.
| a | The LVectorQuaternionAdapter instance to be compared with. |
| bool CDPL.Math.LVectorQuaternionAdapter.__eq__ | ( | ConstLQuaternionExpression | q | ) |
Returns the result of the comparison operation self == q.
| q | The ConstLQuaternionExpression instance to be compared with. |
| bool CDPL.Math.LVectorQuaternionAdapter.__ne__ | ( | LVectorQuaternionAdapter | a | ) |
Returns the result of the comparison operation self != a.
| a | The LVectorQuaternionAdapter instance to be compared with. |
| bool CDPL.Math.LVectorQuaternionAdapter.__ne__ | ( | ConstLQuaternionExpression | q | ) |
Returns the result of the comparison operation self != q.
| q | The ConstLQuaternionExpression instance to be compared with. |
| str CDPL.Math.LVectorQuaternionAdapter.__str__ | ( | ) |
Returns a string representation of the LVectorQuaternionAdapter instance.
| ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__add__ | ( | int | t | ) |
Returns the result of the addition operation self + t.
| t | Specifies the second addend. |
ConstLQuaternionExpression instance holding the result of the addition. | ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__add__ | ( | ConstLQuaternionExpression | e | ) |
Returns the result of the addition operation self + e.
| e | Specifies the second addend. |
ConstLQuaternionExpression instance holding the result of the addition. | ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__sub__ | ( | int | t | ) |
Returns the result of the subtraction operation self - t.
| t | Specifies the subtrahend. |
LVectorQuaternionAdapter instance holding the result of the subtraction. | ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__sub__ | ( | ConstLQuaternionExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
LVectorQuaternionAdapter instance holding the result of the subtraction. | ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__mul__ | ( | int | t | ) |
Returns the result of the multiplication operation self * t.
| t | Specifies the multiplier. |
ConstLQuaternionExpression instance holding the result of the multiplication. | ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__mul__ | ( | ConstLQuaternionExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstLQuaternionExpression instance holding the result of the multiplication. | ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__rmul__ | ( | int | t | ) |
Returns the result of the multiplication operation t * self.
| t | Specifies the multiplicand. |
ConstLQuaternionExpression instance holding the result of the multiplication. | ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__div__ | ( | int | t | ) |
Returns the result of the division operation self // t.
| t | Specifies the divisor. |
ConstLQuaternionExpression instance holding the result of the division. | ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__div__ | ( | ConstLQuaternionExpression | e | ) |
Returns the result of the division operation self // e.
| e | Specifies the divisor. |
ConstLQuaternionExpression instance holding the result of the division. | ConstLQuaternionExpression CDPL.Math.LVectorQuaternionAdapter.__truediv__ | ( | int | t | ) |
Returns the result of the true division operation self / t.
| t | Specifies the divisor. |
ConstLQuaternionExpression instance holding the result of the division. | LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__iadd__ | ( | int | t | ) |
Adds the scalar t to component C1 of this view.
| t | The scalar summand. |
| LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__iadd__ | ( | LVectorQuaternionAdapter | a | ) |
Performs the in-place addition operation self += a.
| a | Specifies the second addend. |
LVectorQuaternionAdapter instance self. | LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__iadd__ | ( | ConstLQuaternionExpression | q | ) |
Performs the in-place addition operation self += q.
| q | Specifies the second addend. |
LVectorQuaternionAdapter instance self. | LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__isub__ | ( | int | t | ) |
Subtracts the scalar t from component C1 of this view.
| t | The scalar subtrahend. |
| LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__isub__ | ( | LVectorQuaternionAdapter | a | ) |
Performs the in-place subtraction operation self -= a.
| a | Specifies the subtrahend. |
LVectorQuaternionAdapter instance self. | LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__isub__ | ( | ConstLQuaternionExpression | q | ) |
Performs the in-place subtraction operation self -= q.
| q | Specifies the subtrahend. |
LVectorQuaternionAdapter instance self. | LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__imul__ | ( | int | t | ) |
Multiplies every component of this view by the scalar t.
| t | The scalar multiplier. |
| LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__imul__ | ( | LVectorQuaternionAdapter | a | ) |
Performs the in-place multiplication operation self *= a.
| a | Specifies the multiplier. |
LVectorQuaternionAdapter instance self. | LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__imul__ | ( | ConstLQuaternionExpression | q | ) |
Performs the in-place multiplication operation self *= q.
| q | Specifies the multiplier. |
LVectorQuaternionAdapter instance self. | LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__idiv__ | ( | int | t | ) |
Divides every component of this view by the scalar t.
| t | The scalar divisor. |
| LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__idiv__ | ( | LVectorQuaternionAdapter | a | ) |
Performs the in-place division operation self /= a.
| a | Specifies the divisor. |
LVectorQuaternionAdapter instance self. | LVectorQuaternionAdapter CDPL.Math.LVectorQuaternionAdapter.__idiv__ | ( | ConstLQuaternionExpression | q | ) |
Performs the in-place division operation self /= q.
| q | Specifies the divisor. |
LVectorQuaternionAdapter instance self.