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

Public Member Functions

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

Additional Inherited Members

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

Member Function Documentation

◆ swap()

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

◆ assign() [1/6]

LQuaternionExpression CDPL.Math.LQuaternionExpression.assign ( LQuaternionExpression  e)

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

Parameters
eThe LQuaternionExpression instance to copy.
Returns
self

◆ assign() [2/6]

LQuaternionExpression CDPL.Math.LQuaternionExpression.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]

LQuaternionExpression CDPL.Math.LQuaternionExpression.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]

LQuaternionExpression CDPL.Math.LQuaternionExpression.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]

LQuaternionExpression CDPL.Math.LQuaternionExpression.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.LQuaternionExpression.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.LQuaternionExpression.setC1 ( int  v)
Parameters
v

◆ setC2()

None CDPL.Math.LQuaternionExpression.setC2 ( int  v)
Parameters
v

◆ setC3()

None CDPL.Math.LQuaternionExpression.setC3 ( int  v)
Parameters
v

◆ setC4()

None CDPL.Math.LQuaternionExpression.setC4 ( int  v)
Parameters
v

◆ set()

None CDPL.Math.LQuaternionExpression.set ( int   c1 = 0,
int   c2 = 0,
int   c3 = 0,
int   c4 = 0 
)
Parameters
c1
c2
c3
c4

◆ __iadd__() [1/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__iadd__ ( int  t)

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

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

◆ __iadd__() [2/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__iadd__ ( LQuaternionExpression  e)

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

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

◆ __iadd__() [3/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__iadd__ ( ConstLQuaternionExpression  q)

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

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

◆ __isub__() [1/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__isub__ ( int  t)

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

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

◆ __isub__() [2/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__isub__ ( LQuaternionExpression  e)

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

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

◆ __isub__() [3/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__isub__ ( ConstLQuaternionExpression  q)

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

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

◆ __imul__() [1/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__imul__ ( int  t)

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

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

◆ __imul__() [2/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__imul__ ( LQuaternionExpression  e)

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

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

◆ __imul__() [3/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__imul__ ( ConstLQuaternionExpression  q)

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

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

◆ __idiv__() [1/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__idiv__ ( int  t)

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

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

◆ __idiv__() [2/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__idiv__ ( LQuaternionExpression  e)

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

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

◆ __idiv__() [3/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__idiv__ ( ConstLQuaternionExpression  q)

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

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

◆ __itruediv__() [1/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__itruediv__ ( int  t)
Parameters
t
Returns

◆ __itruediv__() [2/3]

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

◆ __itruediv__() [3/3]

LQuaternionExpression CDPL.Math.LQuaternionExpression.__itruediv__ ( ConstLQuaternionExpression  q)
Parameters
q
Returns