summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoye <joye>2014-07-03 18:06:43 (GMT)
committerjoye <joye>2014-07-03 18:06:43 (GMT)
commita061bf5344ab2413170cb2f2104008a69795391e (patch)
tree61270075b0113df4a8c4ee3446f3a852d828d18c
parenta0a5204a4cfc480d498b8bedd8f1668129c29a81 (diff)
downloadblt-a061bf5344ab2413170cb2f2104008a69795391e.zip
blt-a061bf5344ab2413170cb2f2104008a69795391e.tar.gz
blt-a061bf5344ab2413170cb2f2104008a69795391e.tar.bz2
*** empty log message ***
-rw-r--r--src/bltGrElemBar.C3
-rw-r--r--src/bltGrElemLine.C13
-rw-r--r--tests/test.tcl1
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"