![]() |
Chemical Data Processing Library Python API - Version 1.4.0
|
Adapter that exposes a quaternion as a 4 element vector expression (indices map to the components C1, C2, C3, C4). More...
Inheritance diagram for CDPL.Math.FQuaternionVectorAdapter:Public Member Functions | |
| None | __init__ (FQuaternionVectorAdapter a) |
Initializes a copy of the FQuaternionVectorAdapter instance a. More... | |
| None | __init__ (FQuaternionExpression e) |
Initializes the FQuaternionVectorAdapter instance. More... | |
| int | getObjectID () |
| Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
| FQuaternionVectorAdapter | assign (ConstFVectorExpression e) |
| Assigns the vector expression e to this view without intermediate temporary (use only when e does not alias the wrapped quaternion). More... | |
| FQuaternionVectorAdapter | assign (ConstDVectorExpression e) |
| Assigns the vector expression e to this view without intermediate temporary (use only when e does not alias the wrapped quaternion). More... | |
| FQuaternionVectorAdapter | assign (ConstLVectorExpression e) |
| Assigns the vector expression e to this view without intermediate temporary (use only when e does not alias the wrapped quaternion). More... | |
| FQuaternionVectorAdapter | assign (ConstULVectorExpression e) |
| Assigns the vector expression e to this view without intermediate temporary (use only when e does not alias the wrapped quaternion). More... | |
| FQuaternionVectorAdapter | assign (FQuaternionVectorAdapter a) |
| Copies the components of a into this view (writing through to the wrapped quaternion). More... | |
| None | assign (object a) |
| Copies the components of a into this view (writing through to the wrapped quaternion). More... | |
| bool | isEmpty () |
Tells whether the view is empty (always False, the view is fixed-size with 4 components). More... | |
| int | getSize () |
| Returns the dimensionality of the view (always 4). More... | |
| float | getElement (int i) |
| object | toArray () |
| None | swap (FQuaternionVectorAdapter a) |
| Swaps the components of this view with those of a. More... | |
| None | setElement (int i, float v) |
| FQuaternionExpression | getData () |
| Returns a reference to the wrapped quaternion (via its stored closure). More... | |
| bool | __eq__ (FQuaternionVectorAdapter a) |
Returns the result of the comparison operation self == a. More... | |
| bool | __eq__ (ConstFVectorExpression e) |
Returns the result of the comparison operation self == e. More... | |
| bool | __ne__ (FQuaternionVectorAdapter a) |
Returns the result of the comparison operation self != a. More... | |
| bool | __ne__ (ConstFVectorExpression e) |
Returns the result of the comparison operation self != e. More... | |
| float | __call__ (int i) |
| Returns a reference to the quaternion component at index i. More... | |
| float | __getitem__ (int i) |
| Returns a reference to the quaternion component at index i. More... | |
| int | __len__ () |
| Returns the dimensionality of the view (always 4). More... | |
| str | __str__ () |
Returns a string representation of the FQuaternionVectorAdapter instance. More... | |
| FQuaternionVectorAdapter | __pos__ () |
| ConstFVectorExpression | __neg__ () |
| ConstFVectorExpression | __add__ (ConstFVectorExpression e) |
Returns the result of the addition operation self + e. More... | |
| ConstFVectorExpression | __sub__ (ConstFVectorExpression e) |
Returns the result of the subtraction operation self - e. More... | |
| ConstFVectorExpression | __mul__ (float t) |
Returns the result of the multiplication operation self * t. More... | |
| ConstFVectorExpression | __mul__ (ConstFMatrixExpression e) |
Returns the result of the multiplication operation self * e. More... | |
| ConstFVectorExpression | __div__ (float t) |
Returns the result of the division operation self // t. More... | |
| ConstFVectorExpression | __truediv__ (float t) |
Returns the result of the true division operation self / t. More... | |
| ConstFVectorExpression | __rmul__ (float t) |
Returns the result of the multiplication operation t * self. More... | |
| None | __setitem__ (int i, float v) |
| FQuaternionVectorAdapter | __iadd__ (FQuaternionVectorAdapter a) |
Performs the in-place addition operation self += a. More... | |
| FQuaternionVectorAdapter | __iadd__ (ConstFVectorExpression e) |
| Adds the vector expression e componentwise to this view. More... | |
| FQuaternionVectorAdapter | __isub__ (FQuaternionVectorAdapter a) |
Performs the in-place subtraction operation self -= a. More... | |
| FQuaternionVectorAdapter | __isub__ (ConstFVectorExpression e) |
| Subtracts the vector expression e componentwise from this view. More... | |
| FQuaternionVectorAdapter | __imul__ (float t) |
| Multiplies every component of this view by the scalar t. More... | |
| FQuaternionVectorAdapter | __idiv__ (float t) |
| Divides every component of this view by the scalar t. More... | |
| FQuaternionVectorAdapter | __itruediv__ (float t) |
Properties | |
| objectID = property(getObjectID) | |
| size = property(getSize) | |
| data = property(getData) | |
Adapter that exposes a quaternion as a 4 element vector expression (indices map to the components C1, C2, C3, C4).
| None CDPL.Math.FQuaternionVectorAdapter.__init__ | ( | FQuaternionVectorAdapter | a | ) |
Initializes a copy of the FQuaternionVectorAdapter instance a.
| a | The FQuaternionVectorAdapter instance to copy. |
| None CDPL.Math.FQuaternionVectorAdapter.__init__ | ( | FQuaternionExpression | e | ) |
Initializes the FQuaternionVectorAdapter instance.
| e |
| int CDPL.Math.FQuaternionVectorAdapter.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python FQuaternionVectorAdapter 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 FQuaternionVectorAdapter 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().
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | ConstFVectorExpression | e | ) |
Assigns the vector expression e to this view without intermediate temporary (use only when e does not alias the wrapped quaternion).
| e | The source vector expression. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | ConstDVectorExpression | e | ) |
Assigns the vector expression e to this view without intermediate temporary (use only when e does not alias the wrapped quaternion).
| e | The source vector expression. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | ConstLVectorExpression | e | ) |
Assigns the vector expression e to this view without intermediate temporary (use only when e does not alias the wrapped quaternion).
| e | The source vector expression. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | ConstULVectorExpression | e | ) |
Assigns the vector expression e to this view without intermediate temporary (use only when e does not alias the wrapped quaternion).
| e | The source vector expression. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.assign | ( | FQuaternionVectorAdapter | a | ) |
Copies the components of a into this view (writing through to the wrapped quaternion).
| a | The source adapter. |
| None CDPL.Math.FQuaternionVectorAdapter.assign | ( | object | a | ) |
Copies the components of a into this view (writing through to the wrapped quaternion).
| a | The source adapter. |
| bool CDPL.Math.FQuaternionVectorAdapter.isEmpty | ( | ) |
Tells whether the view is empty (always False, the view is fixed-size with 4 components).
False. | int CDPL.Math.FQuaternionVectorAdapter.getSize | ( | ) |
Returns the dimensionality of the view (always 4).
| None CDPL.Math.FQuaternionVectorAdapter.swap | ( | FQuaternionVectorAdapter | a | ) |
Swaps the components of this view with those of a.
| a | The adapter to swap with. |
| FQuaternionExpression CDPL.Math.FQuaternionVectorAdapter.getData | ( | ) |
Returns a reference to the wrapped quaternion (via its stored closure).
| bool CDPL.Math.FQuaternionVectorAdapter.__eq__ | ( | FQuaternionVectorAdapter | a | ) |
Returns the result of the comparison operation self == a.
| a | The FQuaternionVectorAdapter instance to be compared with. |
| bool CDPL.Math.FQuaternionVectorAdapter.__eq__ | ( | ConstFVectorExpression | e | ) |
Returns the result of the comparison operation self == e.
| e | The ConstFVectorExpression instance to be compared with. |
| bool CDPL.Math.FQuaternionVectorAdapter.__ne__ | ( | FQuaternionVectorAdapter | a | ) |
Returns the result of the comparison operation self != a.
| a | The FQuaternionVectorAdapter instance to be compared with. |
| bool CDPL.Math.FQuaternionVectorAdapter.__ne__ | ( | ConstFVectorExpression | e | ) |
Returns the result of the comparison operation self != e.
| e | The ConstFVectorExpression instance to be compared with. |
| float CDPL.Math.FQuaternionVectorAdapter.__call__ | ( | int | i | ) |
Returns a reference to the quaternion component at index i.
| i | The zero-based component index (0 = C1, 1 = C2, 2 = C3, 3 = C4). |
| Base.IndexError | if i is not in the range [0, 3]. |
| float CDPL.Math.FQuaternionVectorAdapter.__getitem__ | ( | int | i | ) |
Returns a reference to the quaternion component at index i.
| i | The zero-based component index. |
| Base.IndexError | if i is not in the range [0, 3]. |
| int CDPL.Math.FQuaternionVectorAdapter.__len__ | ( | ) |
Returns the dimensionality of the view (always 4).
| str CDPL.Math.FQuaternionVectorAdapter.__str__ | ( | ) |
Returns a string representation of the FQuaternionVectorAdapter instance.
| ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__add__ | ( | ConstFVectorExpression | e | ) |
Returns the result of the addition operation self + e.
| e | Specifies the second addend. |
ConstFVectorExpression instance holding the result of the addition. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__sub__ | ( | ConstFVectorExpression | e | ) |
Returns the result of the subtraction operation self - e.
| e | Specifies the subtrahend. |
FQuaternionVectorAdapter instance holding the result of the subtraction. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__mul__ | ( | float | t | ) |
Returns the result of the multiplication operation self * t.
| t | Specifies the multiplier. |
ConstFVectorExpression instance holding the result of the multiplication. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__mul__ | ( | ConstFMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e.
| e | Specifies the multiplier. |
ConstFVectorExpression instance holding the result of the multiplication. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__div__ | ( | float | t | ) |
Returns the result of the division operation self // t.
| t | Specifies the divisor. |
ConstFVectorExpression instance holding the result of the division. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__truediv__ | ( | float | t | ) |
Returns the result of the true division operation self / t.
| t | Specifies the divisor. |
ConstFVectorExpression instance holding the result of the division. | ConstFVectorExpression CDPL.Math.FQuaternionVectorAdapter.__rmul__ | ( | float | t | ) |
Returns the result of the multiplication operation t * self.
| t | Specifies the multiplicand. |
ConstFVectorExpression instance holding the result of the multiplication. | FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__iadd__ | ( | FQuaternionVectorAdapter | a | ) |
Performs the in-place addition operation self += a.
| a | Specifies the second addend. |
FQuaternionVectorAdapter instance self. | FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__iadd__ | ( | ConstFVectorExpression | e | ) |
Adds the vector expression e componentwise to this view.
| e | The vector expression to add. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__isub__ | ( | FQuaternionVectorAdapter | a | ) |
Performs the in-place subtraction operation self -= a.
| a | Specifies the subtrahend. |
FQuaternionVectorAdapter instance self. | FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__isub__ | ( | ConstFVectorExpression | e | ) |
Subtracts the vector expression e componentwise from this view.
| e | The vector expression to subtract. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__imul__ | ( | float | t | ) |
Multiplies every component of this view by the scalar t.
| t | The scalar multiplier. |
| FQuaternionVectorAdapter CDPL.Math.FQuaternionVectorAdapter.__idiv__ | ( | float | t | ) |
Divides every component of this view by the scalar t.
| t | The scalar divisor. |