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
Point& operator/=(float rhs)
{
mX *= rhs;
mY *= rhs;
mZ *= rhs;
mX /= rhs;
mY /= rhs;
mZ /= rhs;
return *this;
}
......
......@@ -132,7 +132,8 @@ class Atom
// Radius calculation based on integrating the density until perc of electrons is found
void calculateRadius(float resHigh, float resLow, float perc);
float radius() const;
// access data in compound for this atom
// the energy-type field
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