summaryrefslogtreecommitdiffstats
path: root/tksao/util
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/util')
-rw-r--r--tksao/util/util.C16
-rw-r--r--tksao/util/util.h3
2 files changed, 0 insertions, 19 deletions
diff --git a/tksao/util/util.C b/tksao/util/util.C
index 11d692f..faade52 100644
--- a/tksao/util/util.C
+++ b/tksao/util/util.C
@@ -150,22 +150,6 @@ double degToRad(double aa)
return M_PI*aa/180.;
}
-Vector degToRad(const Vector& vv)
-{
- Vector out =vv;
- out[0] *= M_PI/180.;
- out[1] *= M_PI/180.;
- return out;
-}
-
-Vector3d degToRad(const Vector3d& vv)
-{
- Vector3d out =vv;
- out[0] *= M_PI/180.;
- out[1] *= M_PI/180.;
- return out;
-}
-
double dmsToDegree(int sign, int degree, int min, double sec)
{
// sign is needed because of -00 vs +00
diff --git a/tksao/util/util.h b/tksao/util/util.h
index 8b5247c..3609ae6 100644
--- a/tksao/util/util.h
+++ b/tksao/util/util.h
@@ -92,9 +92,6 @@ extern double m180To180(double);
extern double degToRad(double);
extern double radToDeg(double);
-extern Vector degToRad(const Vector&);
-extern Vector3d degToRad(const Vector3d&);
-
extern int parseSection(char*, Vector*, Vector*);
extern double dmsToDegree(int, int, int, double);