A class for pythonic access to bond properties.
|
__init__(self,
ct,
atom_index,
index)
A bond is defined by its underlying Structure, the atom index that it
is anchored to, and the bond index. |
|
|
|
__eq__(self,
that)
Test _StructureBond equality by the bonded atoms. |
|
|
|
__ne__(self,
other)
Test _StructureBond inequality based on the bonded atoms. |
|
|
|
__hash__(self)
Hash value for bond, based on the index values of the atoms involved
and the handle of the underlying Structure. |
|
|
|
|
|
delete(self)
Delete this bond. |
|
|
|
|
|
|
|
|
|
|
|
_getType(self)
@returns schrodinger.structure.BondType |
|
|
|
_setType(self,
bond_type)
@type bond_type schrodinger.structure.BondType |
|
|
|
_getFromStyle(self)
Return bond's "from" style. |
|
|
|
_setFromStyle(self,
style)
Set bond "from" style. |
|
|
|
_getToStyle(self)
Return bond's "to" style. |
|
|
|
_setToStyle(self,
style)
Set bond "to" style. |
|
|
|
|
|
_setStyleOld(self,
style) |
|
|
|
setStyle(self,
style)
Set the bond's style in both directions ("from" and
"to") |
|
|
|
|
Inherited from _NotSortable :
__ge__ ,
__gt__ ,
__le__ ,
__lt__
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__subclasshook__
|