Chemical Data Processing Library Python API - Version 1.1.1
Public Member Functions | List of all members
CDPL.Math.FQuaternionExpression Class Reference
+ Inheritance diagram for CDPL.Math.FQuaternionExpression:

Public Member Functions

None swap (FQuaternionExpression e)
 
FQuaternionExpression assign (FQuaternionExpression e)
 Replaces the current state of self with a copy of the state of the FQuaternionExpression instance e. More...
 
FQuaternionExpression assign (ConstFQuaternionExpression e)
 Replaces the current state of self with a copy of the state of the ConstFQuaternionExpression instance e. More...
 
FQuaternionExpression assign (ConstDQuaternionExpression e)
 Replaces the current state of self with a copy of the state of the ConstDQuaternionExpression instance e. More...
 
FQuaternionExpression assign (ConstLQuaternionExpression e)
 Replaces the current state of self with a copy of the state of the ConstLQuaternionExpression instance e. More...
 
FQuaternionExpression assign (ConstULQuaternionExpression e)
 Replaces the current state of self with a copy of the state of the ConstULQuaternionExpression instance e. More...
 
None assign (object a)
 Replaces the current state of self with a copy of the state of the object instance 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)
 
FQuaternionExpression __iadd__ (float t)
 Performs the in-place addition operation self += t. More...
 
FQuaternionExpression __iadd__ (FQuaternionExpression e)
 Performs the in-place addition operation self += e. More...
 
FQuaternionExpression __iadd__ (ConstFQuaternionExpression q)
 Performs the in-place addition operation self += q. More...
 
FQuaternionExpression __isub__ (float t)
 Performs the in-place subtraction operation self -= t. More...
 
FQuaternionExpression __isub__ (FQuaternionExpression e)
 Performs the in-place subtraction operation self -= e. More...
 
FQuaternionExpression __isub__ (ConstFQuaternionExpression q)
 Performs the in-place subtraction operation self -= q. More...
 
FQuaternionExpression __imul__ (float t)
 Performs the in-place multiplication operation self *= t. More...
 
FQuaternionExpression __imul__ (FQuaternionExpression e)
 Performs the in-place multiplication operation self *= e. More...
 
FQuaternionExpression __imul__ (ConstFQuaternionExpression q)
 Performs the in-place multiplication operation self *= q. More...
 
FQuaternionExpression __idiv__ (float t)
 Performs the in-place division operation self /= t. More...
 
FQuaternionExpression __idiv__ (FQuaternionExpression e)
 Performs the in-place division operation self /= e. More...
 
FQuaternionExpression __idiv__ (ConstFQuaternionExpression q)
 Performs the in-place division operation self /= q. More...
 
FQuaternionExpression __itruediv__ (float t)
 
FQuaternionExpression __itruediv__ (FQuaternionExpression e)
 
FQuaternionExpression __itruediv__ (ConstFQuaternionExpression q)
 
- Public Member Functions inherited from CDPL.Math.ConstFQuaternionExpression
int getObjectID ()
 Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
 
float getC1 ()
 
float getC2 ()
 
float getC3 ()
 
float getC4 ()
 
object toArray ()
 
bool __eq__ (ConstFQuaternionExpression e)
 Returns the result of the comparison operation self == e. More...
 
bool __ne__ (ConstFQuaternionExpression e)
 Returns the result of the comparison operation self != e. More...
 
str __str__ ()
 Returns a string representation of the ConstFQuaternionExpression instance. More...
 
ConstFQuaternionExpression __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)
 
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)
 
ConstFQuaternionExpression __rdiv__ (float t)
 

Additional Inherited Members

- Properties inherited from CDPL.Math.ConstFQuaternionExpression
 objectID = property(getObjectID)
 

Member Function Documentation

◆ swap()

None CDPL.Math.FQuaternionExpression.swap ( FQuaternionExpression  e)
Parameters
e

◆ assign() [1/6]

FQuaternionExpression CDPL.Math.FQuaternionExpression.assign ( FQuaternionExpression  e)

Replaces the current state of self with a copy of the state of the FQuaternionExpression instance e.

Parameters
eThe FQuaternionExpression instance to copy.
Returns
self

◆ assign() [2/6]

FQuaternionExpression CDPL.Math.FQuaternionExpression.assign ( ConstFQuaternionExpression  e)

Replaces the current state of self with a copy of the state of the ConstFQuaternionExpression instance e.

Parameters
eThe ConstFQuaternionExpression instance to copy.
Returns
self

◆ assign() [3/6]

FQuaternionExpression CDPL.Math.FQuaternionExpression.assign ( ConstDQuaternionExpression  e)

Replaces the current state of self with a copy of the state of the ConstDQuaternionExpression instance e.

Parameters
eThe ConstDQuaternionExpression instance to copy.
Returns
self

◆ assign() [4/6]

FQuaternionExpression CDPL.Math.FQuaternionExpression.assign ( ConstLQuaternionExpression  e)

Replaces the current state of self with a copy of the state of the ConstLQuaternionExpression instance e.

Parameters
eThe ConstLQuaternionExpression instance to copy.
Returns
self

◆ assign() [5/6]

FQuaternionExpression CDPL.Math.FQuaternionExpression.assign ( ConstULQuaternionExpression  e)

Replaces the current state of self with a copy of the state of the ConstULQuaternionExpression instance e.

Parameters
eThe ConstULQuaternionExpression instance to copy.
Returns
self

◆ assign() [6/6]

None CDPL.Math.FQuaternionExpression.assign ( object  a)

Replaces the current state of self with a copy of the state of the object instance a.

Parameters
aThe object instance to copy.
Returns
self

◆ setC1()

None CDPL.Math.FQuaternionExpression.setC1 ( float  v)
Parameters
v

◆ setC2()

None CDPL.Math.FQuaternionExpression.setC2 ( float  v)
Parameters
v

◆ setC3()

None CDPL.Math.FQuaternionExpression.setC3 ( float  v)
Parameters
v

◆ setC4()

None CDPL.Math.FQuaternionExpression.setC4 ( float  v)
Parameters
v

◆ set()

None CDPL.Math.FQuaternionExpression.set ( float   c1 = 0.0,
float   c2 = 0.0,
float   c3 = 0.0,
float   c4 = 0.0 
)
Parameters
c1
c2
c3
c4

◆ __iadd__() [1/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__iadd__ ( float  t)

Performs the in-place addition operation self += t.

Parameters
tSpecifies the second addend.
Returns
The updated FQuaternionExpression instance self.

◆ __iadd__() [2/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__iadd__ ( FQuaternionExpression  e)

Performs the in-place addition operation self += e.

Parameters
eSpecifies the second addend.
Returns
The updated FQuaternionExpression instance self.

◆ __iadd__() [3/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__iadd__ ( ConstFQuaternionExpression  q)

Performs the in-place addition operation self += q.

Parameters
qSpecifies the second addend.
Returns
The updated FQuaternionExpression instance self.

◆ __isub__() [1/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__isub__ ( float  t)

Performs the in-place subtraction operation self -= t.

Parameters
tSpecifies the subtrahend.
Returns
The updated FQuaternionExpression instance self.

◆ __isub__() [2/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__isub__ ( FQuaternionExpression  e)

Performs the in-place subtraction operation self -= e.

Parameters
eSpecifies the subtrahend.
Returns
The updated FQuaternionExpression instance self.

◆ __isub__() [3/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__isub__ ( ConstFQuaternionExpression  q)

Performs the in-place subtraction operation self -= q.

Parameters
qSpecifies the subtrahend.
Returns
The updated FQuaternionExpression instance self.

◆ __imul__() [1/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__imul__ ( float  t)

Performs the in-place multiplication operation self *= t.

Parameters
tSpecifies the multiplier.
Returns
The updated FQuaternionExpression instance self.

◆ __imul__() [2/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__imul__ ( FQuaternionExpression  e)

Performs the in-place multiplication operation self *= e.

Parameters
eSpecifies the multiplier.
Returns
The updated FQuaternionExpression instance self.

◆ __imul__() [3/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__imul__ ( ConstFQuaternionExpression  q)

Performs the in-place multiplication operation self *= q.

Parameters
qSpecifies the multiplier.
Returns
The updated FQuaternionExpression instance self.

◆ __idiv__() [1/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__idiv__ ( float  t)

Performs the in-place division operation self /= t.

Parameters
tSpecifies the divisor.
Returns
The updated FQuaternionExpression instance self.

◆ __idiv__() [2/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__idiv__ ( FQuaternionExpression  e)

Performs the in-place division operation self /= e.

Parameters
eSpecifies the divisor.
Returns
The updated FQuaternionExpression instance self.

◆ __idiv__() [3/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__idiv__ ( ConstFQuaternionExpression  q)

Performs the in-place division operation self /= q.

Parameters
qSpecifies the divisor.
Returns
The updated FQuaternionExpression instance self.

◆ __itruediv__() [1/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__itruediv__ ( float  t)
Parameters
t
Returns

◆ __itruediv__() [2/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__itruediv__ ( FQuaternionExpression  e)
Parameters
e
Returns

◆ __itruediv__() [3/3]

FQuaternionExpression CDPL.Math.FQuaternionExpression.__itruediv__ ( ConstFQuaternionExpression  q)
Parameters
q
Returns