From a061bf5344ab2413170cb2f2104008a69795391e Mon Sep 17 00:00:00 2001 From: joye Date: Thu, 3 Jul 2014 18:06:43 +0000 Subject: *** empty log message *** --- src/bltGrElemBar.C | 3 +-- src/bltGrElemLine.C | 13 ++++--------- tests/test.tcl | 1 + 3 files changed, 6 insertions(+), 11 deletions(-) diff --git a/src/bltGrElemBar.C b/src/bltGrElemBar.C index 4d9f877..738b78b 100644 --- a/src/bltGrElemBar.C +++ b/src/bltGrElemBar.C @@ -893,8 +893,7 @@ void BarElement::mergePens(BarStyle** dataToStyle) return; } - // We have more than one style. Group bar segments of like pen styles - // together + // We have more than one style. Group bar segments of like pen styles together if (nBars_ > 0) { XRectangle* bars = (XRectangle*)malloc(nBars_ * sizeof(XRectangle)); int* barToData = (int*)malloc(nBars_ * sizeof(int)); diff --git a/src/bltGrElemLine.C b/src/bltGrElemLine.C index 1314990..cc1b295 100644 --- a/src/bltGrElemLine.C +++ b/src/bltGrElemLine.C @@ -942,7 +942,7 @@ int LineElement::scaleSymbol(int normalSize) return newSize; } -void LineElement::getScreenPoints(MapInfo *mapPtr) +void LineElement::getScreenPoints(MapInfo* mapPtr) { LineElementOptions* ops = (LineElementOptions*)ops_; GraphOptions* gops = (GraphOptions*)graphPtr_->ops_; @@ -1627,10 +1627,8 @@ void LineElement::mapFillArea(MapInfo *mapPtr) Point2d* origPts = (Point2d*)malloc(sizeof(Point2d) * np); if (gops->inverted) { - double minX; int i; - - minX = (double)ops->yAxis->screenMin_; + double minX = (double)ops->yAxis->screenMin_; for (i = 0; i < mapPtr->nScreenPts; i++) { origPts[i].x = mapPtr->screenPts[i].x + 1; origPts[i].y = mapPtr->screenPts[i].y; @@ -1638,8 +1636,7 @@ void LineElement::mapFillArea(MapInfo *mapPtr) minX = origPts[i].x; } } - /* Add edges to make (if necessary) the polygon fill to the bottom of - * plotting window */ + // Add edges to make the polygon fill to the bottom of plotting window origPts[i].x = minX; origPts[i].y = origPts[i - 1].y; i++; @@ -1650,7 +1647,6 @@ void LineElement::mapFillArea(MapInfo *mapPtr) } else { int i; - double maxY = (double)ops->yAxis->bottom_; for (i = 0; i < mapPtr->nScreenPts; i++) { origPts[i].x = mapPtr->screenPts[i].x + 1; @@ -1659,8 +1655,7 @@ void LineElement::mapFillArea(MapInfo *mapPtr) maxY = origPts[i].y; } } - /* Add edges to extend the fill polygon to the bottom of plotting - * window */ + // Add edges to extend the fill polygon to the bottom of plotting window origPts[i].x = origPts[i - 1].x; origPts[i].y = maxY; i++; diff --git a/tests/test.tcl b/tests/test.tcl index b51a5f2..0d5ebe0 100644 --- a/tests/test.tcl +++ b/tests/test.tcl @@ -2,6 +2,7 @@ source base.tcl set w .line set graph [bltLineGraph $w] +$graph configure -invertxy yes #set graph [bltBarGraph $w] #echo "done" -- cgit v0.12