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

Public Member Functions

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__ (ConstULQuaternionExpression e)
 Returns the result of the comparison operation self == e. More...
 
bool __ne__ (ConstULQuaternionExpression e)
 Returns the result of the comparison operation self != e. More...
 
str __str__ ()
 Returns a string representation of the ConstULQuaternionExpression instance. More...
 
ConstULQuaternionExpression __pos__ ()
 
ConstULQuaternionExpression __neg__ ()
 
ConstULQuaternionExpression __add__ (int t)
 Returns the result of the addition operation self + t. More...
 
ConstULQuaternionExpression __add__ (ConstULQuaternionExpression e)
 Returns the result of the addition operation self + e. More...
 
ConstULQuaternionExpression __radd__ (int t)
 
ConstULQuaternionExpression __sub__ (int t)
 Returns the result of the subtraction operation self - t. More...
 
ConstULQuaternionExpression __sub__ (ConstULQuaternionExpression e)
 Returns the result of the subtraction operation self - e. More...
 
ConstULQuaternionExpression __rsub__ (int t)
 
ConstULQuaternionExpression __mul__ (int t)
 Returns the result of the multiplication operation self * t. More...
 
ConstULQuaternionExpression __mul__ (ConstULQuaternionExpression e)
 Returns the result of the multiplication operation self * e. More...
 
ConstULQuaternionExpression __rmul__ (int t)
 
ConstULQuaternionExpression __div__ (int t)
 Returns the result of the division operation self / t. More...
 
ConstULQuaternionExpression __div__ (ConstULQuaternionExpression e)
 Returns the result of the division operation self / e. More...
 
ConstULQuaternionExpression __truediv__ (int t)
 
ConstULQuaternionExpression __rdiv__ (int t)
 

Properties

 objectID = property(getObjectID)
 

Member Function Documentation

◆ getObjectID()

int CDPL.Math.ConstULQuaternionExpression.getObjectID ( )

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

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

int CDPL.Math.ConstULQuaternionExpression.getC1 ( )
Returns

◆ getC2()

int CDPL.Math.ConstULQuaternionExpression.getC2 ( )
Returns

◆ getC3()

int CDPL.Math.ConstULQuaternionExpression.getC3 ( )
Returns

◆ getC4()

int CDPL.Math.ConstULQuaternionExpression.getC4 ( )
Returns

◆ toArray()

object CDPL.Math.ConstULQuaternionExpression.toArray ( )
Returns

◆ __eq__()

bool CDPL.Math.ConstULQuaternionExpression.__eq__ ( ConstULQuaternionExpression  e)

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

Parameters
eThe ConstULQuaternionExpression instance to be compared with.
Returns
The result of the comparison operation.

◆ __ne__()

bool CDPL.Math.ConstULQuaternionExpression.__ne__ ( ConstULQuaternionExpression  e)

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

Parameters
eThe ConstULQuaternionExpression instance to be compared with.
Returns
The result of the comparison operation.

◆ __str__()

str CDPL.Math.ConstULQuaternionExpression.__str__ ( )

Returns a string representation of the ConstULQuaternionExpression instance.

Returns
The generated string representation.

◆ __pos__()

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__pos__ ( )
Returns

◆ __neg__()

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__neg__ ( )
Returns

◆ __add__() [1/2]

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__add__ ( int  t)

Returns the result of the addition operation self + t.

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

◆ __add__() [2/2]

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__add__ ( ConstULQuaternionExpression  e)

Returns the result of the addition operation self + e.

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

◆ __radd__()

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__radd__ ( int  t)
Parameters
t
Returns

◆ __sub__() [1/2]

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__sub__ ( int  t)

Returns the result of the subtraction operation self - t.

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

◆ __sub__() [2/2]

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__sub__ ( ConstULQuaternionExpression  e)

Returns the result of the subtraction operation self - e.

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

◆ __rsub__()

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__rsub__ ( int  t)
Parameters
t
Returns

◆ __mul__() [1/2]

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__mul__ ( int  t)

Returns the result of the multiplication operation self * t.

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

◆ __mul__() [2/2]

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__mul__ ( ConstULQuaternionExpression  e)

Returns the result of the multiplication operation self * e.

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

◆ __rmul__()

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__rmul__ ( int  t)
Parameters
t
Returns

◆ __div__() [1/2]

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__div__ ( int  t)

Returns the result of the division operation self / t.

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

◆ __div__() [2/2]

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__div__ ( ConstULQuaternionExpression  e)

Returns the result of the division operation self / e.

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

◆ __truediv__()

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__truediv__ ( int  t)
Parameters
t
Returns

◆ __rdiv__()

ConstULQuaternionExpression CDPL.Math.ConstULQuaternionExpression.__rdiv__ ( int  t)
Parameters
t
Returns