Chemical Data Processing Library Python API - Version 1.1.1
|
Public Member Functions | |
None | __init__ (DHomogenousCoordsAdapter a) |
Initializes a copy of the DHomogenousCoordsAdapter instance a. More... | |
None | __init__ (DVectorExpression e) |
Initializes the DHomogenousCoordsAdapter instance. More... | |
int | getObjectID () |
Returns the numeric identifier (ID) of the wrapped C++ class instance. More... | |
DHomogenousCoordsAdapter | assign (ConstFVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e. More... | |
DHomogenousCoordsAdapter | assign (ConstDVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e. More... | |
DHomogenousCoordsAdapter | assign (ConstLVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e. More... | |
DHomogenousCoordsAdapter | assign (ConstULVectorExpression e) |
Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e. More... | |
DHomogenousCoordsAdapter | assign (DHomogenousCoordsAdapter r) |
Replaces the current state of self with a copy of the state of the DHomogenousCoordsAdapter instance r. More... | |
None | assign (object a) |
Replaces the current state of self with a copy of the state of the object instance a. More... | |
bool | isEmpty () |
int | getSize () |
float | getElement (int i) |
object | toArray () |
None | swap (DHomogenousCoordsAdapter r) |
None | setElement (int i, float v) |
DVectorExpression | getData () |
bool | __eq__ (DHomogenousCoordsAdapter r) |
Returns the result of the comparison operation self == r . More... | |
bool | __eq__ (ConstDVectorExpression e) |
Returns the result of the comparison operation self == e . More... | |
bool | __ne__ (DHomogenousCoordsAdapter r) |
Returns the result of the comparison operation self != r . More... | |
bool | __ne__ (ConstDVectorExpression e) |
Returns the result of the comparison operation self != e . More... | |
float | __call__ (int i) |
float | __getitem__ (int i) |
int | __len__ () |
str | __str__ () |
Returns a string representation of the DHomogenousCoordsAdapter instance. More... | |
DHomogenousCoordsAdapter | __pos__ () |
ConstDVectorExpression | __neg__ () |
ConstDVectorExpression | __add__ (ConstDVectorExpression e) |
Returns the result of the addition operation self + e . More... | |
ConstDVectorExpression | __sub__ (ConstDVectorExpression e) |
Returns the result of the subtraction operation self - e . More... | |
ConstDVectorExpression | __mul__ (float t) |
Returns the result of the multiplication operation self * t . More... | |
ConstDVectorExpression | __mul__ (ConstDMatrixExpression e) |
Returns the result of the multiplication operation self * e . More... | |
ConstDVectorExpression | __div__ (float t) |
Returns the result of the division operation self / t . More... | |
ConstDVectorExpression | __truediv__ (float t) |
ConstDVectorExpression | __rmul__ (float t) |
None | __setitem__ (int i, float v) |
DHomogenousCoordsAdapter | __iadd__ (DHomogenousCoordsAdapter a) |
Performs the in-place addition operation self += a . More... | |
DHomogenousCoordsAdapter | __iadd__ (ConstDVectorExpression e) |
Performs the in-place addition operation self += e . More... | |
DHomogenousCoordsAdapter | __isub__ (DHomogenousCoordsAdapter a) |
Performs the in-place subtraction operation self -= a . More... | |
DHomogenousCoordsAdapter | __isub__ (ConstDVectorExpression e) |
Performs the in-place subtraction operation self -= e . More... | |
DHomogenousCoordsAdapter | __imul__ (float t) |
Performs the in-place multiplication operation self *= t . More... | |
DHomogenousCoordsAdapter | __idiv__ (float t) |
Performs the in-place division operation self /= t . More... | |
DHomogenousCoordsAdapter | __itruediv__ (float t) |
Properties | |
objectID = property(getObjectID) | |
size = property(getSize) | |
data = property(getData) | |
None CDPL.Math.DHomogenousCoordsAdapter.__init__ | ( | DHomogenousCoordsAdapter | a | ) |
Initializes a copy of the DHomogenousCoordsAdapter instance a.
a | The DHomogenousCoordsAdapter instance to copy. |
None CDPL.Math.DHomogenousCoordsAdapter.__init__ | ( | DVectorExpression | e | ) |
Initializes the DHomogenousCoordsAdapter instance.
e |
int CDPL.Math.DHomogenousCoordsAdapter.getObjectID | ( | ) |
Returns the numeric identifier (ID) of the wrapped C++ class instance.
Different Python DHomogenousCoordsAdapter 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 DHomogenousCoordsAdapter 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()
.
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.assign | ( | ConstFVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstFVectorExpression instance e.
e | The ConstFVectorExpression instance to copy. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.assign | ( | ConstDVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstDVectorExpression instance e.
e | The ConstDVectorExpression instance to copy. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.assign | ( | ConstLVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstLVectorExpression instance e.
e | The ConstLVectorExpression instance to copy. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.assign | ( | ConstULVectorExpression | e | ) |
Replaces the current state of self with a copy of the state of the ConstULVectorExpression instance e.
e | The ConstULVectorExpression instance to copy. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.assign | ( | DHomogenousCoordsAdapter | r | ) |
Replaces the current state of self with a copy of the state of the DHomogenousCoordsAdapter instance r.
r | The DHomogenousCoordsAdapter instance to copy. |
None CDPL.Math.DHomogenousCoordsAdapter.assign | ( | object | a | ) |
Replaces the current state of self with a copy of the state of the object instance a.
a | The object instance to copy. |
bool CDPL.Math.DHomogenousCoordsAdapter.isEmpty | ( | ) |
int CDPL.Math.DHomogenousCoordsAdapter.getSize | ( | ) |
float CDPL.Math.DHomogenousCoordsAdapter.getElement | ( | int | i | ) |
i |
object CDPL.Math.DHomogenousCoordsAdapter.toArray | ( | ) |
None CDPL.Math.DHomogenousCoordsAdapter.swap | ( | DHomogenousCoordsAdapter | r | ) |
r |
None CDPL.Math.DHomogenousCoordsAdapter.setElement | ( | int | i, |
float | v | ||
) |
i | |
v |
DVectorExpression CDPL.Math.DHomogenousCoordsAdapter.getData | ( | ) |
bool CDPL.Math.DHomogenousCoordsAdapter.__eq__ | ( | DHomogenousCoordsAdapter | r | ) |
Returns the result of the comparison operation self == r
.
r | The DHomogenousCoordsAdapter instance to be compared with. |
bool CDPL.Math.DHomogenousCoordsAdapter.__eq__ | ( | ConstDVectorExpression | e | ) |
Returns the result of the comparison operation self == e
.
e | The ConstDVectorExpression instance to be compared with. |
bool CDPL.Math.DHomogenousCoordsAdapter.__ne__ | ( | DHomogenousCoordsAdapter | r | ) |
Returns the result of the comparison operation self != r
.
r | The DHomogenousCoordsAdapter instance to be compared with. |
bool CDPL.Math.DHomogenousCoordsAdapter.__ne__ | ( | ConstDVectorExpression | e | ) |
Returns the result of the comparison operation self != e
.
e | The ConstDVectorExpression instance to be compared with. |
float CDPL.Math.DHomogenousCoordsAdapter.__call__ | ( | int | i | ) |
i |
float CDPL.Math.DHomogenousCoordsAdapter.__getitem__ | ( | int | i | ) |
i |
int CDPL.Math.DHomogenousCoordsAdapter.__len__ | ( | ) |
str CDPL.Math.DHomogenousCoordsAdapter.__str__ | ( | ) |
Returns a string representation of the DHomogenousCoordsAdapter instance.
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.__pos__ | ( | ) |
ConstDVectorExpression CDPL.Math.DHomogenousCoordsAdapter.__neg__ | ( | ) |
ConstDVectorExpression CDPL.Math.DHomogenousCoordsAdapter.__add__ | ( | ConstDVectorExpression | e | ) |
Returns the result of the addition operation self + e
.
e | Specifies the second addend. |
ConstDVectorExpression CDPL.Math.DHomogenousCoordsAdapter.__sub__ | ( | ConstDVectorExpression | e | ) |
Returns the result of the subtraction operation self - e
.
e | Specifies the subtrahend. |
ConstDVectorExpression CDPL.Math.DHomogenousCoordsAdapter.__mul__ | ( | float | t | ) |
Returns the result of the multiplication operation self * t
.
t | Specifies the multiplier. |
ConstDVectorExpression CDPL.Math.DHomogenousCoordsAdapter.__mul__ | ( | ConstDMatrixExpression | e | ) |
Returns the result of the multiplication operation self * e
.
e | Specifies the multiplier. |
ConstDVectorExpression CDPL.Math.DHomogenousCoordsAdapter.__div__ | ( | float | t | ) |
Returns the result of the division operation self / t
.
t | Specifies the divisor. |
ConstDVectorExpression CDPL.Math.DHomogenousCoordsAdapter.__truediv__ | ( | float | t | ) |
t |
ConstDVectorExpression CDPL.Math.DHomogenousCoordsAdapter.__rmul__ | ( | float | t | ) |
t |
None CDPL.Math.DHomogenousCoordsAdapter.__setitem__ | ( | int | i, |
float | v | ||
) |
i | |
v |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.__iadd__ | ( | DHomogenousCoordsAdapter | a | ) |
Performs the in-place addition operation self += a
.
a | Specifies the second addend. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.__iadd__ | ( | ConstDVectorExpression | e | ) |
Performs the in-place addition operation self += e
.
e | Specifies the second addend. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.__isub__ | ( | DHomogenousCoordsAdapter | a | ) |
Performs the in-place subtraction operation self -= a
.
a | Specifies the subtrahend. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.__isub__ | ( | ConstDVectorExpression | e | ) |
Performs the in-place subtraction operation self -= e
.
e | Specifies the subtrahend. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.__imul__ | ( | float | t | ) |
Performs the in-place multiplication operation self *= t
.
t | Specifies the multiplier. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.__idiv__ | ( | float | t | ) |
Performs the in-place division operation self /= t
.
t | Specifies the divisor. |
DHomogenousCoordsAdapter CDPL.Math.DHomogenousCoordsAdapter.__itruediv__ | ( | float | t | ) |
t |