summaryrefslogtreecommitdiffstats
path: root/tksao/frame/polygon.C
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2018-08-17 16:46:34 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2018-08-17 16:46:34 (GMT)
commit61331fa2c608e44eae36a8edbaef63752e635303 (patch)
tree9908ec5510fc89225be60b572def5279b88f9622 /tksao/frame/polygon.C
parente45aee40eb4f7837acae8808dd2343dad32f9fe0 (diff)
downloadblt-61331fa2c608e44eae36a8edbaef63752e635303.zip
blt-61331fa2c608e44eae36a8edbaef63752e635303.tar.gz
blt-61331fa2c608e44eae36a8edbaef63752e635303.tar.bz2
simplify slice code
Diffstat (limited to 'tksao/frame/polygon.C')
-rw-r--r--tksao/frame/polygon.C6
1 files changed, 3 insertions, 3 deletions
diff --git a/tksao/frame/polygon.C b/tksao/frame/polygon.C
index c961dce..c33455b 100644
--- a/tksao/frame/polygon.C
+++ b/tksao/frame/polygon.C
@@ -332,8 +332,8 @@ void Polygon::analysisHistogram(char* xname, char* yname, int num)
}
void Polygon::analysisPlot3d(char* xname, char* yname,
- Coord::CoordSystem sys,
- Marker::AnalysisMethod method)
+ Coord::CoordSystem sys, Coord::SkyFrame sky,
+ Marker::AnalysisMethod method)
{
double* x;
double* y;
@@ -345,7 +345,7 @@ void Polygon::analysisPlot3d(char* xname, char* yname,
bb.bound(vertex.current()->vector * mm);
while (vertex.next());
- int num = parent->markerAnalysisPlot3d(this, &x, &y, bb, sys, method);
+ int num = parent->markerAnalysisPlot3d(this, &x, &y, bb, sys, sky, method);
analysisXYResult(xname, yname, x, y, num);
}