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

Public Member Functions

None __init__ (ConstDVectorQuaternionAdapter a)
 Initializes a copy of the ConstDVectorQuaternionAdapter instance a. More...
 
None __init__ (ConstDVectorExpression e)
 Initializes the ConstDVectorQuaternionAdapter instance. More...
 
int getObjectID ()
 Returns the numeric identifier (ID) of the wrapped C++ class instance. More...
 
float getC1 ()
 
float getC2 ()
 
float getC3 ()
 
float getC4 ()
 
object toArray ()
 
ConstDVectorExpression getData ()
 
bool __eq__ (ConstDVectorQuaternionAdapter 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__ (ConstDVectorQuaternionAdapter 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 ConstDVectorQuaternionAdapter instance. More...
 
ConstDVectorQuaternionAdapter __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)
 

Properties

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

Constructor & Destructor Documentation

◆ __init__() [1/2]

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

Initializes a copy of the ConstDVectorQuaternionAdapter instance a.

Parameters
aThe ConstDVectorQuaternionAdapter instance to copy.

◆ __init__() [2/2]

None CDPL.Math.ConstDVectorQuaternionAdapter.__init__ ( ConstDVectorExpression  e)

Initializes the ConstDVectorQuaternionAdapter instance.

Parameters
e

Member Function Documentation

◆ getObjectID()

int CDPL.Math.ConstDVectorQuaternionAdapter.getObjectID ( )

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

Different Python ConstDVectorQuaternionAdapter 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 ConstDVectorQuaternionAdapter 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.

◆ getC1()

float CDPL.Math.ConstDVectorQuaternionAdapter.getC1 ( )
Returns

◆ getC2()

float CDPL.Math.ConstDVectorQuaternionAdapter.getC2 ( )
Returns

◆ getC3()

float CDPL.Math.ConstDVectorQuaternionAdapter.getC3 ( )
Returns

◆ getC4()

float CDPL.Math.ConstDVectorQuaternionAdapter.getC4 ( )
Returns

◆ toArray()

object CDPL.Math.ConstDVectorQuaternionAdapter.toArray ( )
Returns

◆ getData()

ConstDVectorExpression CDPL.Math.ConstDVectorQuaternionAdapter.getData ( )
Returns

◆ __eq__() [1/2]

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

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

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

◆ __eq__() [2/2]

bool CDPL.Math.ConstDVectorQuaternionAdapter.__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.ConstDVectorQuaternionAdapter.__ne__ ( ConstDVectorQuaternionAdapter  a)

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

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

◆ __ne__() [2/2]

bool CDPL.Math.ConstDVectorQuaternionAdapter.__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.ConstDVectorQuaternionAdapter.__str__ ( )

Returns a string representation of the ConstDVectorQuaternionAdapter instance.

Returns
The generated string representation.

◆ __pos__()

ConstDVectorQuaternionAdapter CDPL.Math.ConstDVectorQuaternionAdapter.__pos__ ( )
Returns

◆ __neg__()

ConstDQuaternionExpression CDPL.Math.ConstDVectorQuaternionAdapter.__neg__ ( )
Returns

◆ __add__() [1/2]

ConstDQuaternionExpression CDPL.Math.ConstDVectorQuaternionAdapter.__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.ConstDVectorQuaternionAdapter.__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.ConstDVectorQuaternionAdapter.__radd__ ( float  t)
Parameters
t
Returns

◆ __sub__() [1/2]

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

Returns the result of the subtraction operation self - t.

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

◆ __sub__() [2/2]

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

Returns the result of the subtraction operation self - e.

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

◆ __rsub__()

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

◆ __mul__() [1/2]

ConstDQuaternionExpression CDPL.Math.ConstDVectorQuaternionAdapter.__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.ConstDVectorQuaternionAdapter.__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.ConstDVectorQuaternionAdapter.__rmul__ ( float  t)
Parameters
t
Returns

◆ __div__() [1/2]

ConstDQuaternionExpression CDPL.Math.ConstDVectorQuaternionAdapter.__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.ConstDVectorQuaternionAdapter.__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.ConstDVectorQuaternionAdapter.__truediv__ ( float  t)
Parameters
t
Returns

◆ __rdiv__()

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