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") |
|
|
|
|
|
length = property(_getLength, doc= "Length of the bond in angs...
|
|
order = property(_getOrder, _setOrder, doc= "Bond order")
|
|
type = property(_getType, _setType, doc= "Bond Type")
|
|
from_style = property(_getFromStyle, _setFromStyle, doc= "The ...
|
|
to_style = property(_getToStyle, _setToStyle, doc= "The bond's...
|
|
style = property(_getFromStyle, _setFromStyle, doc= "The bond'...
|
|
property = property(_getBondProperty, doc= "Dictionary-like co...
|