![]() |
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.FVectorQuaternionAdapter:Public Member Functions | |
| None | __init__ (FVectorQuaternionAdapter a) |
Initializes a copy of the FVectorQuaternionAdapter instance a. More... | |
| None | __init__ (FVectorExpression e) |
Initializes the FVectorQuaternionAdapter instance. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| FVectorQuaternionAdapter | 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... | |
| FVectorQuaternionAdapter | 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... | |
| FVectorQuaternionAdapter | 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... | |
| FVectorQuaternionAdapter | 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... | |
| FVectorQuaternionAdapter | assign (FVectorQuaternionAdapter 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 (FVectorQuaternionAdapter 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... | |
| FVectorExpression | getData () |
| Returns a reference to the wrapped vector (via its stored closure). More... | |
| bool | __eq__ (FVectorQuaternionAdapter a) |
Returns the result of the comparison operation self == a. More... | |
| bool | __eq__ (ConstFQuaternionExpression q) |
Returns the result of the comparison operation self == q. More... | |
| bool | __ne__ (FVectorQuaternionAdapter a) |
Returns the result of the comparison operation self != a. More... | |
| bool | __ne__ (ConstFQuaternionExpression q) |
Returns the result of the comparison operation self != q. More... | |
| str | __str__ () |
Returns a string representation of the FVectorQuaternionAdapter instance. More... | |
| FVectorQuaternionAdapter | __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) |
| FVectorQuaternionAdapter | __iadd__ (float t) |
| Adds the scalar t to component C1 of this view. More... | |
| FVectorQuaternionAdapter | __iadd__ (FVectorQuaternionAdapter a) |
Performs the in-place addition operation self += a. More... | |
| FVectorQuaternionAdapter | __iadd__ (ConstFQuaternionExpression q) |
Performs the in-place addition operation self += q. More... | |
| FVectorQuaternionAdapter | __isub__ (float t) |
| Subtracts the scalar t from component C1 of this view. More... | |
| FVectorQuaternionAdapter | __isub__ (FVectorQuaternionAdapter a) |
Performs the in-place subtraction operation self -= a. More... | |
| FVectorQuaternionAdapter | __isub__ (ConstFQuaternionExpression q) |
Performs the in-place subtraction operation self -= q. More... | |
| FVectorQuaternionAdapter | __imul__ (float t) |
| Multiplies every component of this view by the scalar t. More... | |
| FVectorQuaternionAdapter | __imul__ (FVectorQuaternionAdapter a) |
Performs the in-place multiplication operation self *= a. More... | |
| FVectorQuaternionAdapter | __imul__ (ConstFQuaternionExpression q) |
Performs the in-place multiplication operation self *= q. More... | |
| FVectorQuaternionAdapter | __idiv__ (float t) |
| Divides every component of this view by the scalar t. More... | |
| FVectorQuaternionAdapter | __idiv__ (FVectorQuaternionAdapter a) |
Performs the in-place division operation self /= a. More... | |
| FVectorQuaternionAdapter | __idiv__ (ConstFQuaternionExpression q) |
Performs the in-place division operation self /= q. More... | |
| FVectorQuaternionAdapter | __itruediv__ (float t) |
| FVectorQuaternionAdapter | __itruediv__ (FVectorQuaternionAdapter a) |
| FVectorQuaternionAdapter | __itruediv__ (ConstFQuaternionExpression 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.FVectorQuaternionAdapter.__init__ | ( | FVectorQuaternionAdapter | a | ) |
Initializes a copy of the FVectorQuaternionAdapter instance a.
| a | The FVectorQuaternionAdapter instance to copy. |
| None CDPL.Math.FVectorQuaternionAdapter.__init__ | ( | FVectorExpression | e | ) |
Initializes the FVectorQuaternionAdapter instance.
| e |
| int CDPL.Math.FVectorQuaternionAdapter.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python FVectorQuaternionAdapter 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 FVectorQuaternionAdapter 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().
| FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.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. |
| FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.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. |
| FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.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. |
| FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.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. |
| FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.assign | ( | FVectorQuaternionAdapter | a | ) |
Copies the components of a into this view (writing through to the wrapped vector).
| a | The source adapter. |
| float CDPL.Math.FVectorQuaternionAdapter.getC1 | ( | ) |
Returns a reference to component C1.
| float CDPL.Math.FVectorQuaternionAdapter.getC2 | ( | ) |
Returns a reference to component C2.
| float CDPL.Math.FVectorQuaternionAdapter.getC3 | ( | ) |
Returns a reference to component C3.
| float CDPL.Math.FVectorQuaternionAdapter.getC4 | ( | ) |
Returns a reference to component C4.
| None CDPL.Math.FVectorQuaternionAdapter.swap | ( | FVectorQuaternionAdapter | a | ) |
Swaps the components of this view with those of a.
| a | The adapter to swap with. |
| None CDPL.Math.FVectorQuaternionAdapter.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. |
| FVectorExpression CDPL.Math.FVectorQuaternionAdapter.getData | ( | ) |
Returns a reference to the wrapped vector (via its stored closure).
| bool CDPL.Math.FVectorQuaternionAdapter.__eq__ | ( | FVectorQuaternionAdapter | a | ) |
Returns the result of the comparison operation self == a.
| a | The FVectorQuaternionAdapter instance to be compared with. |
| bool CDPL.Math.FVectorQuaternionAdapter.__eq__ | ( | ConstFQuaternionExpression | q | ) |
Returns the result of the comparison operation self == q.
| q | The ConstFQuaternionExpression instance to be compared with. |
| bool CDPL.Math.FVectorQuaternionAdapter.__ne__ | ( | FVectorQuaternionAdapter | a | ) |
Returns the result of the comparison operation self != a.
| a | The FVectorQuaternionAdapter instance to be compared with. |
| bool CDPL.Math.FVectorQuaternionAdapter.__ne__ | ( | ConstFQuaternionExpression | q | ) |
Returns the result of the comparison operation self != q.
| q | The ConstFQuaternionExpression instance to be compared with. |
| str CDPL.Math.FVectorQuaternionAdapter.__str__ | ( | ) |
Returns a string representation of the FVectorQuaternionAdapter instance.
| ConstFQuaternionExpression CDPL.Math.FVectorQuaternionAdapter.__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.FVectorQuaternionAdapter.__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.FVectorQuaternionAdapter.__sub__ | ( | float | t | ) |
Returns the result of the subtraction operation self - t.
| t | Specifies the subtrahend. |
FVectorQuaternionAdapter instance holding the result of the subtraction. | ConstFQuaternionExpression CDPL.Math.FVectorQuaternionAdapter.__sub__ | ( | ConstFQuaternionExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
FVectorQuaternionAdapter instance holding the result of the subtraction. | ConstFQuaternionExpression CDPL.Math.FVectorQuaternionAdapter.__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.FVectorQuaternionAdapter.__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.FVectorQuaternionAdapter.__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.FVectorQuaternionAdapter.__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.FVectorQuaternionAdapter.__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.FVectorQuaternionAdapter.__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. | FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__iadd__ | ( | float | t | ) |
Adds the scalar t to component C1 of this view.
| t | The scalar summand. |
| FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__iadd__ | ( | FVectorQuaternionAdapter | a | ) |
Performs the in-place addition operation self += a.
| a | Specifies the second addend. |
FVectorQuaternionAdapter instance self. | FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__iadd__ | ( | ConstFQuaternionExpression | q | ) |
Performs the in-place addition operation self += q.
| q | Specifies the second addend. |
FVectorQuaternionAdapter instance self. | FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__isub__ | ( | float | t | ) |
Subtracts the scalar t from component C1 of this view.
| t | The scalar subtrahend. |
| FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__isub__ | ( | FVectorQuaternionAdapter | a | ) |
Performs the in-place subtraction operation self -= a.
| a | Specifies the subtrahend. |
FVectorQuaternionAdapter instance self. | FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__isub__ | ( | ConstFQuaternionExpression | q | ) |
Performs the in-place subtraction operation self -= q.
| q | Specifies the subtrahend. |
FVectorQuaternionAdapter instance self. | FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__imul__ | ( | float | t | ) |
Multiplies every component of this view by the scalar t.
| t | The scalar multiplier. |
| FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__imul__ | ( | FVectorQuaternionAdapter | a | ) |
Performs the in-place multiplication operation self *= a.
| a | Specifies the multiplier. |
FVectorQuaternionAdapter instance self. | FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__imul__ | ( | ConstFQuaternionExpression | q | ) |
Performs the in-place multiplication operation self *= q.
| q | Specifies the multiplier. |
FVectorQuaternionAdapter instance self. | FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__idiv__ | ( | float | t | ) |
Divides every component of this view by the scalar t.
| t | The scalar divisor. |
| FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__idiv__ | ( | FVectorQuaternionAdapter | a | ) |
Performs the in-place division operation self /= a.
| a | Specifies the divisor. |
FVectorQuaternionAdapter instance self. | FVectorQuaternionAdapter CDPL.Math.FVectorQuaternionAdapter.__idiv__ | ( | ConstFQuaternionExpression | q | ) |
Performs the in-place division operation self /= q.
| q | Specifies the divisor. |
FVectorQuaternionAdapter instance self.