ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/development/src/math/Triangle.hpp
(Generate patch)

Comparing branches/development/src/math/Triangle.hpp (file contents):
Revision 1824 by gezelter, Tue Nov 22 20:38:56 2011 UTC vs.
Revision 1825 by gezelter, Wed Jan 9 19:27:52 2013 UTC

# Line 189 | Line 189 | namespace OpenMD {
189        RealType t2 = -a1 + b1 + c1;
190        RealType t3 =  a1 - b1 + c1;
191        RealType t4 =  a1 + b1 - c1;
192      RealType junk = t1*t2*t3*t4;
192        return a1 * b1 * c1 / sqrt(t1 * t2 * t3 * t4);
193      }
194        

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines