Changeset 6b937bd for molecuilder/src/bond.cpp
- Timestamp:
- Oct 19, 2009, 1:09:29 PM (16 years ago)
- Children:
- 3b0ba2
- Parents:
- 99bed3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/bond.cpp
r99bed3 r6b937bd 95 95 * \return pointer to the other atom in the bond, NULL if no match (indicates something's wrong with the bond) 96 96 */ 97 atom * bond::GetOtherAtom(const atom*Atom) const97 atom * bond::GetOtherAtom(const ParticleInfo *Atom) const 98 98 { 99 99 if(leftatom == Atom) … … 118 118 * \return true if it is either bond::leftatom or bond::rightatom, false otherwise 119 119 */ 120 bool bond::Contains(const atom*ptr)120 bool bond::Contains(const ParticleInfo *ptr) 121 121 { 122 122 return ((leftatom == ptr) || (rightatom == ptr));
Note:
See TracChangeset
for help on using the changeset viewer.