Commit 5b963bf6 by maarten

fix in point

git-svn-id: svn+ssh://gitlab/srv/svn-repos/pdb-redo/trunk@268 a1961a4f-ab94-4bcc-80e8-33b5a54de466
parent 0dc65313
...@@ -100,9 +100,9 @@ struct Point ...@@ -100,9 +100,9 @@ struct Point
Point& operator/=(float rhs) Point& operator/=(float rhs)
{ {
mX *= rhs; mX /= rhs;
mY *= rhs; mY /= rhs;
mZ *= rhs; mZ /= rhs;
return *this; return *this;
} }
......
...@@ -132,7 +132,8 @@ class Atom ...@@ -132,7 +132,8 @@ class Atom
// Radius calculation based on integrating the density until perc of electrons is found // Radius calculation based on integrating the density until perc of electrons is found
void calculateRadius(float resHigh, float resLow, float perc); void calculateRadius(float resHigh, float resLow, float perc);
float radius() const; float radius() const;
// access data in compound for this atom
// the energy-type field // the energy-type field
std::string energyType() const; std::string energyType() const;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment