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

Public Member Functions

None __init__ (DVectorQuaternionAdapter a)
 Initializes a copy of the DVectorQuaternionAdapter instance a. More...
 
None __init__ (DVectorExpression e)
 Initializes the DVectorQuaternionAdapter instance. More...
 
int getObjectID ()
 Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
 
DVectorQuaternionAdapter assign (ConstFQuaternionExpression e)
 Replaces the current state of self with a copy of the state of the ConstFQuaternionExpression instance e. More...
 
DVectorQuaternionAdapter assign (ConstDQuaternionExpression e)
 Replaces the current state of self with a copy of the state of the ConstDQuaternionExpression instance e. More...
 
DVectorQuaternionAdapter assign (ConstLQuaternionExpression e)
 Replaces the current state of self with a copy of the state of the ConstLQuaternionExpression instance e. More...
 
DVectorQuaternionAdapter assign (ConstULQuaternionExpression e)
 Replaces the current state of self with a copy of the state of the ConstULQuaternionExpression instance e. More...
 
DVectorQuaternionAdapter assign (DVectorQuaternionAdapter a)
 Replaces the current state of self with a copy of the state of the DVectorQuaternionAdapter instance a. More...
 
float getC1 ()
 
float getC2 ()
 
float getC3 ()
 
float getC4 ()
 
object toArray ()
 
None swap (DVectorQuaternionAdapter a)
 
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)
 
DVectorExpression getData ()
 
bool __eq__ (DVectorQuaternionAdapter a)
 Returns the result of the comparison operation self == a. More...
 
bool __eq__ (ConstDQuaternionExpression q)
 Returns the result of the comparison operation self == q. More...
 
bool __ne__ (DVectorQuaternionAdapter a)
 Returns the result of the comparison operation self != a. More...
 
bool __ne__ (ConstDQuaternionExpression q)
 Returns the result of the comparison operation self != q. More...
 
str __str__ ()
 Returns a string representation of the DVectorQuaternionAdapter instance. More...
 
DVectorQuaternionAdapter __pos__ ()
 
ConstDQuaternionExpression __neg__ ()
 
ConstDQuaternionExpression __add__ (float t)
 Returns the result of the addition operation self + t. More...
 
ConstDQuaternionExpression __add__ (ConstDQuaternionExpression e)
 Returns the result of the addition operation self + e. More...
 
ConstDQuaternionExpression __radd__ (float t)
 
ConstDQuaternionExpression __sub__ (float t)
 Returns the result of the subtraction operation self - t. More...
 
ConstDQuaternionExpression __sub__ (ConstDQuaternionExpression e)
 Returns the result of the subtraction operation self - e. More...
 
ConstDQuaternionExpression __rsub__ (float t)
 
ConstDQuaternionExpression __mul__ (float t)
 Returns the result of the multiplication operation self * t. More...
 
ConstDQuaternionExpression __mul__ (ConstDQuaternionExpression e)
 Returns the result of the multiplication operation self * e. More...
 
ConstDQuaternionExpression __rmul__ (float t)
 
ConstDQuaternionExpression __div__ (float t)
 Returns the result of the division operation self / t. More...
 
ConstDQuaternionExpression __div__ (ConstDQuaternionExpression e)
 Returns the result of the division operation self / e. More...
 
ConstDQuaternionExpression __truediv__ (float t)
 
ConstDQuaternionExpression __rdiv__ (float t)
 
DVectorQuaternionAdapter __iadd__ (float t)
 Performs the in-place addition operation self += t. More...
 
DVectorQuaternionAdapter __iadd__ (DVectorQuaternionAdapter a)
 Performs the in-place addition operation self += a. More...
 
DVectorQuaternionAdapter __iadd__ (ConstDQuaternionExpression q)
 Performs the in-place addition operation self += q. More...
 
DVectorQuaternionAdapter __isub__ (float t)
 Performs the in-place subtraction operation self -= t. More...
 
DVectorQuaternionAdapter __isub__ (DVectorQuaternionAdapter a)
 Performs the in-place subtraction operation self -= a. More...
 
DVectorQuaternionAdapter __isub__ (ConstDQuaternionExpression q)
 Performs the in-place subtraction operation self -= q. More...
 
DVectorQuaternionAdapter __imul__ (float t)
 Performs the in-place multiplication operation self *= t. More...
 
DVectorQuaternionAdapter __imul__ (DVectorQuaternionAdapter a)
 Performs the in-place multiplication operation self *= a. More...
 
DVectorQuaternionAdapter __imul__ (ConstDQuaternionExpression q)
 Performs the in-place multiplication operation self *= q. More...
 
DVectorQuaternionAdapter __idiv__ (float t)
 Performs the in-place division operation self /= t. More...
 
DVectorQuaternionAdapter __idiv__ (DVectorQuaternionAdapter a)
 Performs the in-place division operation self /= a. More...
 
DVectorQuaternionAdapter __idiv__ (ConstDQuaternionExpression q)
 Performs the in-place division operation self /= q. More...
 
DVectorQuaternionAdapter __itruediv__ (float t)
 
DVectorQuaternionAdapter __itruediv__ (DVectorQuaternionAdapter a)
 
DVectorQuaternionAdapter __itruediv__ (ConstDQuaternionExpression q)
 

Properties

 objectID = property(getObjectID)
 
 data = property(getData)
 

Constructor & Destructor Documentation

◆ __init__() [1/2]

None CDPL.Math.DVectorQuaternionAdapter.__init__ ( DVectorQuaternionAdapter  a)

Initializes a copy of the DVectorQuaternionAdapter instance a.

Parameters
aThe DVectorQuaternionAdapter instance to copy.

◆ __init__() [2/2]

None CDPL.Math.DVectorQuaternionAdapter.__init__ ( DVectorExpression  e)

Initializes the DVectorQuaternionAdapter instance.

Parameters
e

Member Function Documentation

◆ getObjectID()

int CDPL.Math.DVectorQuaternionAdapter.getObjectID ( )

Returns the numeric identifier (ID) of the wrapped C++ class instance.

Different Python DVectorQuaternionAdapter 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 DVectorQuaternionAdapter 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().

Returns
The numeric ID of the internally referenced C++ class instance.

◆ assign() [1/5]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.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() [2/5]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.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() [3/5]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.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() [4/5]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.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() [5/5]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.assign ( DVectorQuaternionAdapter  a)

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

Parameters
aThe DVectorQuaternionAdapter instance to copy.
Returns
self

◆ getC1()

float CDPL.Math.DVectorQuaternionAdapter.getC1 ( )
Returns

◆ getC2()

float CDPL.Math.DVectorQuaternionAdapter.getC2 ( )
Returns

◆ getC3()

float CDPL.Math.DVectorQuaternionAdapter.getC3 ( )
Returns

◆ getC4()

float CDPL.Math.DVectorQuaternionAdapter.getC4 ( )
Returns

◆ toArray()

object CDPL.Math.DVectorQuaternionAdapter.toArray ( )
Returns

◆ swap()

None CDPL.Math.DVectorQuaternionAdapter.swap ( DVectorQuaternionAdapter  a)
Parameters
a

◆ setC1()

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

◆ setC2()

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

◆ setC3()

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

◆ setC4()

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

◆ set()

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

◆ getData()

DVectorExpression CDPL.Math.DVectorQuaternionAdapter.getData ( )
Returns

◆ __eq__() [1/2]

bool CDPL.Math.DVectorQuaternionAdapter.__eq__ ( DVectorQuaternionAdapter  a)

Returns the result of the comparison operation self == a.

Parameters
aThe DVectorQuaternionAdapter instance to be compared with.
Returns
The result of the comparison operation.

◆ __eq__() [2/2]

bool CDPL.Math.DVectorQuaternionAdapter.__eq__ ( ConstDQuaternionExpression  q)

Returns the result of the comparison operation self == q.

Parameters
qThe ConstDQuaternionExpression instance to be compared with.
Returns
The result of the comparison operation.

◆ __ne__() [1/2]

bool CDPL.Math.DVectorQuaternionAdapter.__ne__ ( DVectorQuaternionAdapter  a)

Returns the result of the comparison operation self != a.

Parameters
aThe DVectorQuaternionAdapter instance to be compared with.
Returns
The result of the comparison operation.

◆ __ne__() [2/2]

bool CDPL.Math.DVectorQuaternionAdapter.__ne__ ( ConstDQuaternionExpression  q)

Returns the result of the comparison operation self != q.

Parameters
qThe ConstDQuaternionExpression instance to be compared with.
Returns
The result of the comparison operation.

◆ __str__()

str CDPL.Math.DVectorQuaternionAdapter.__str__ ( )

Returns a string representation of the DVectorQuaternionAdapter instance.

Returns
The generated string representation.

◆ __pos__()

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__pos__ ( )
Returns

◆ __neg__()

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__neg__ ( )
Returns

◆ __add__() [1/2]

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__add__ ( float  t)

Returns the result of the addition operation self + t.

Parameters
tSpecifies the second addend.
Returns
A ConstDQuaternionExpression instance holding the result of the addition.

◆ __add__() [2/2]

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__add__ ( ConstDQuaternionExpression  e)

Returns the result of the addition operation self + e.

Parameters
eSpecifies the second addend.
Returns
A ConstDQuaternionExpression instance holding the result of the addition.

◆ __radd__()

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__radd__ ( float  t)
Parameters
t
Returns

◆ __sub__() [1/2]

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__sub__ ( float  t)

Returns the result of the subtraction operation self - t.

Parameters
tSpecifies the subtrahend.
Returns
A DVectorQuaternionAdapter instance holding the result of the subtraction.

◆ __sub__() [2/2]

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__sub__ ( ConstDQuaternionExpression  e)

Returns the result of the subtraction operation self - e.

Parameters
eSpecifies the subtrahend.
Returns
A DVectorQuaternionAdapter instance holding the result of the subtraction.

◆ __rsub__()

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__rsub__ ( float  t)
Parameters
t
Returns

◆ __mul__() [1/2]

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__mul__ ( float  t)

Returns the result of the multiplication operation self * t.

Parameters
tSpecifies the multiplier.
Returns
A ConstDQuaternionExpression instance holding the result of the multiplication.

◆ __mul__() [2/2]

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__mul__ ( ConstDQuaternionExpression  e)

Returns the result of the multiplication operation self * e.

Parameters
eSpecifies the multiplier.
Returns
A ConstDQuaternionExpression instance holding the result of the multiplication.

◆ __rmul__()

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__rmul__ ( float  t)
Parameters
t
Returns

◆ __div__() [1/2]

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__div__ ( float  t)

Returns the result of the division operation self / t.

Parameters
tSpecifies the divisor.
Returns
A ConstDQuaternionExpression instance holding the result of the division.

◆ __div__() [2/2]

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__div__ ( ConstDQuaternionExpression  e)

Returns the result of the division operation self / e.

Parameters
eSpecifies the divisor.
Returns
A ConstDQuaternionExpression instance holding the result of the division.

◆ __truediv__()

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__truediv__ ( float  t)
Parameters
t
Returns

◆ __rdiv__()

ConstDQuaternionExpression CDPL.Math.DVectorQuaternionAdapter.__rdiv__ ( float  t)
Parameters
t
Returns

◆ __iadd__() [1/3]

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

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

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

◆ __iadd__() [2/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__iadd__ ( DVectorQuaternionAdapter  a)

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

Parameters
aSpecifies the second addend.
Returns
The updated DVectorQuaternionAdapter instance self.

◆ __iadd__() [3/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__iadd__ ( ConstDQuaternionExpression  q)

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

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

◆ __isub__() [1/3]

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

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

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

◆ __isub__() [2/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__isub__ ( DVectorQuaternionAdapter  a)

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

Parameters
aSpecifies the subtrahend.
Returns
The updated DVectorQuaternionAdapter instance self.

◆ __isub__() [3/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__isub__ ( ConstDQuaternionExpression  q)

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

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

◆ __imul__() [1/3]

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

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

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

◆ __imul__() [2/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__imul__ ( DVectorQuaternionAdapter  a)

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

Parameters
aSpecifies the multiplier.
Returns
The updated DVectorQuaternionAdapter instance self.

◆ __imul__() [3/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__imul__ ( ConstDQuaternionExpression  q)

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

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

◆ __idiv__() [1/3]

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

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

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

◆ __idiv__() [2/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__idiv__ ( DVectorQuaternionAdapter  a)

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

Parameters
aSpecifies the divisor.
Returns
The updated DVectorQuaternionAdapter instance self.

◆ __idiv__() [3/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__idiv__ ( ConstDQuaternionExpression  q)

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

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

◆ __itruediv__() [1/3]

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

◆ __itruediv__() [2/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__itruediv__ ( DVectorQuaternionAdapter  a)
Parameters
a
Returns

◆ __itruediv__() [3/3]

DVectorQuaternionAdapter CDPL.Math.DVectorQuaternionAdapter.__itruediv__ ( ConstDQuaternionExpression  q)
Parameters
q
Returns