summaryrefslogtreecommitdiffstats
path: root/tksao/frame/polygon.C
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/frame/polygon.C')
-rw-r--r--tksao/frame/polygon.C10
1 files changed, 5 insertions, 5 deletions
diff --git a/tksao/frame/polygon.C b/tksao/frame/polygon.C
index 29fbe67..d86a948 100644
--- a/tksao/frame/polygon.C
+++ b/tksao/frame/polygon.C
@@ -487,7 +487,7 @@ void Polygon::listPros(ostream& str, Coord::CoordSystem sys,
vertex.head();
do {
Vector vv = ptr->mapFromRef(vertex.current()->vector*mm,sys);
- str << ' ' << setprecision(8) << vv;
+ str << ' ' << vv;
}
while (vertex.next());
}
@@ -503,7 +503,7 @@ void Polygon::listPros(ostream& str, Coord::CoordSystem sys,
vertex.head();
do {
Vector vv = ptr->mapFromRef(vertex.current()->vector*mm,sys,sky);
- str << ' ' << setprecision(10) << setunit('d') << vv;
+ str << ' ' << setunit('d') << vv;
}
while (vertex.next());
}
@@ -546,7 +546,7 @@ void Polygon::listSAOtng(ostream& str, Coord::CoordSystem sys,
first=0;
Vector vv = ptr->mapFromRef(vertex.current()->vector*mm,sys);
- str << setprecision(8) << vv;
+ str << vv;
}
while (vertex.next());
str << ')';
@@ -566,7 +566,7 @@ void Polygon::listSAOtng(ostream& str, Coord::CoordSystem sys,
first=0;
Vector vv = ptr->mapFromRef(vertex.current()->vector*mm,sys,sky);
- str << setprecision(10) << vv;
+ str << vv;
}
while (vertex.next());
str << ')';
@@ -611,7 +611,7 @@ void Polygon::listSAOimage(ostream& str, int strip)
first=0;
Vector vv = ptr->mapFromRef(vertex.current()->vector*mm,Coord::IMAGE);
- str << setprecision(8) << vv;
+ str << vv;
}
while (vertex.next());