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