Changeset 0d111b for molecuilder/src/bond.cpp
- Timestamp:
- Apr 29, 2010, 1:55:21 PM (15 years ago)
- Children:
- 070651, 5d1a94
- Parents:
- 90c4460 (diff), 32842d8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/bond.cpp
r90c4460 r0d111b 119 119 double bond::GetDistance() const 120 120 { 121 return (leftatom->node->Distance( rightatom->node));121 return (leftatom->node->Distance(*rightatom->node)); 122 122 }; 123 123 … … 127 127 double bond::GetDistanceSquared() const 128 128 { 129 return (leftatom->node->DistanceSquared( rightatom->node));129 return (leftatom->node->DistanceSquared(*rightatom->node)); 130 130 };
Note:
See TracChangeset
for help on using the changeset viewer.