summaryrefslogtreecommitdiffstats
path: root/tksao/util
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2018-01-27 20:15:32 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2018-01-27 20:15:32 (GMT)
commit64961df6408bc78c4194825c1a65c8aab360e0ab (patch)
tree0cdab4aa9c0780f2f1bc1fde931da940033b09ba /tksao/util
parentce11bec2ee5edfd25cb9c15abcd1f57858814a3e (diff)
downloadblt-64961df6408bc78c4194825c1a65c8aab360e0ab.zip
blt-64961df6408bc78c4194825c1a65c8aab360e0ab.tar.gz
blt-64961df6408bc78c4194825c1a65c8aab360e0ab.tar.bz2
redefine degToRad
Diffstat (limited to 'tksao/util')
-rw-r--r--tksao/util/util.C3
1 files changed, 1 insertions, 2 deletions
diff --git a/tksao/util/util.C b/tksao/util/util.C
index 5e4ab87..4770774 100644
--- a/tksao/util/util.C
+++ b/tksao/util/util.C
@@ -197,8 +197,7 @@ Vector3d radToDeg(const Vector3d& vv)
double degToRad(double aa)
{
- double rr = M_PI*aa/180.;
- return zeroTWOPI(rr);
+ return M_PI*aa/180.;
}
Vector degToRad(const Vector& vv)