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

Public Member Functions

None __init__ (ConstFVectorQuaternionAdapter a)
 Initializes a copy of the ConstFVectorQuaternionAdapter instance a. More...
 
None __init__ (ConstFVectorExpression e)
 Initializes the ConstFVectorQuaternionAdapter 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 ()
 
ConstFVectorExpression getData ()
 
bool __eq__ (ConstFVectorQuaternionAdapter a)
 Returns the result of the comparison operation self == a. More...
 
bool __eq__ (ConstFQuaternionExpression q)
 Returns the result of the comparison operation self == q. More...
 
bool __ne__ (ConstFVectorQuaternionAdapter a)
 Returns the result of the comparison operation self != a. More...
 
bool __ne__ (ConstFQuaternionExpression q)
 Returns the result of the comparison operation self != q. More...
 
str __str__ ()
 Returns a string representation of the ConstFVectorQuaternionAdapter instance. More...
 
ConstFVectorQuaternionAdapter __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)
 

Properties

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

Constructor & Destructor Documentation

◆ __init__() [1/2]

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

Initializes a copy of the ConstFVectorQuaternionAdapter instance a.

Parameters
aThe ConstFVectorQuaternionAdapter instance to copy.

◆ __init__() [2/2]

None CDPL.Math.ConstFVectorQuaternionAdapter.__init__ ( ConstFVectorExpression  e)

Initializes the ConstFVectorQuaternionAdapter instance.

Parameters
e

Member Function Documentation

◆ getObjectID()

int CDPL.Math.ConstFVectorQuaternionAdapter.getObjectID ( )

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

Different Python ConstFVectorQuaternionAdapter 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 ConstFVectorQuaternionAdapter 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.ConstFVectorQuaternionAdapter.getC1 ( )
Returns

◆ getC2()

float CDPL.Math.ConstFVectorQuaternionAdapter.getC2 ( )
Returns

◆ getC3()

float CDPL.Math.ConstFVectorQuaternionAdapter.getC3 ( )
Returns

◆ getC4()

float CDPL.Math.ConstFVectorQuaternionAdapter.getC4 ( )
Returns

◆ toArray()

object CDPL.Math.ConstFVectorQuaternionAdapter.toArray ( )
Returns

◆ getData()

ConstFVectorExpression CDPL.Math.ConstFVectorQuaternionAdapter.getData ( )
Returns

◆ __eq__() [1/2]

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

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

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

◆ __eq__() [2/2]

bool CDPL.Math.ConstFVectorQuaternionAdapter.__eq__ ( ConstFQuaternionExpression  q)

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

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

◆ __ne__() [1/2]

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

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

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

◆ __ne__() [2/2]

bool CDPL.Math.ConstFVectorQuaternionAdapter.__ne__ ( ConstFQuaternionExpression  q)

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

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

◆ __str__()

str CDPL.Math.ConstFVectorQuaternionAdapter.__str__ ( )

Returns a string representation of the ConstFVectorQuaternionAdapter instance.

Returns
The generated string representation.

◆ __pos__()

ConstFVectorQuaternionAdapter CDPL.Math.ConstFVectorQuaternionAdapter.__pos__ ( )
Returns

◆ __neg__()

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__neg__ ( )
Returns

◆ __add__() [1/2]

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__add__ ( float  t)

Returns the result of the addition operation self + t.

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

◆ __add__() [2/2]

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__add__ ( ConstFQuaternionExpression  e)

Returns the result of the addition operation self + e.

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

◆ __radd__()

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__radd__ ( float  t)
Parameters
t
Returns

◆ __sub__() [1/2]

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__sub__ ( float  t)

Returns the result of the subtraction operation self - t.

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

◆ __sub__() [2/2]

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__sub__ ( ConstFQuaternionExpression  e)

Returns the result of the subtraction operation self - e.

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

◆ __rsub__()

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__rsub__ ( float  t)
Parameters
t
Returns

◆ __mul__() [1/2]

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__mul__ ( float  t)

Returns the result of the multiplication operation self * t.

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

◆ __mul__() [2/2]

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__mul__ ( ConstFQuaternionExpression  e)

Returns the result of the multiplication operation self * e.

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

◆ __rmul__()

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__rmul__ ( float  t)
Parameters
t
Returns

◆ __div__() [1/2]

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__div__ ( float  t)

Returns the result of the division operation self / t.

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

◆ __div__() [2/2]

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__div__ ( ConstFQuaternionExpression  e)

Returns the result of the division operation self / e.

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

◆ __truediv__()

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__truediv__ ( float  t)
Parameters
t
Returns

◆ __rdiv__()

ConstFQuaternionExpression CDPL.Math.ConstFVectorQuaternionAdapter.__rdiv__ ( float  t)
Parameters
t
Returns