summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoye <joye>2014-07-07 20:21:28 (GMT)
committerjoye <joye>2014-07-07 20:21:28 (GMT)
commit68aa12cb2e80da7568917404fab875146bf9c65c (patch)
tree7d7fb5516b79f50ca154535c5573b642ef66a578
parent8d2751112b917b410dc0ca8a4cfff127ec7399cf (diff)
downloadblt-68aa12cb2e80da7568917404fab875146bf9c65c.zip
blt-68aa12cb2e80da7568917404fab875146bf9c65c.tar.gz
blt-68aa12cb2e80da7568917404fab875146bf9c65c.tar.bz2
*** empty log message ***
-rw-r--r--src/bltGrElemLine.C7
-rw-r--r--tests/test.tcl2
2 files changed, 5 insertions, 4 deletions
diff --git a/src/bltGrElemLine.C b/src/bltGrElemLine.C
index 94d0746..4543592 100644
--- a/src/bltGrElemLine.C
+++ b/src/bltGrElemLine.C
@@ -2036,9 +2036,9 @@ void LineElement::drawSquare(Display *display, Drawable drawable,
delete [] rectangles;
}
-void LineElement::drawSCross(Display *display, Drawable drawable,
+void LineElement::drawSCross(Display* display, Drawable drawable,
LinePen* penPtr,
- int nSymbolPts, Point2d *symbolPts, int r2)
+ int nSymbolPts, Point2d* symbolPts, int r2)
{
LinePenOptions* penOps = (LinePenOptions*)penPtr->ops();
@@ -2056,7 +2056,7 @@ void LineElement::drawSCross(Display *display, Drawable drawable,
int count = 0;
XSegment* segments = new XSegment[nSymbolPts*2];
- XSegment *sp;
+ XSegment* sp;
Point2d *pp, *endp;
for (sp=segments, pp=symbolPts, endp=pp+nSymbolPts; pp<endp; pp++) {
if (DRAW_SYMBOL()) {
@@ -2067,6 +2067,7 @@ void LineElement::drawSCross(Display *display, Drawable drawable,
sp->x2 = pattern[1].x + rndx;
sp->y2 = pattern[1].y + rndy;
sp++;
+ count++;
sp->x1 = pattern[2].x + rndx;
sp->y1 = pattern[2].y + rndy;
sp->x2 = pattern[3].x + rndx;
diff --git a/tests/test.tcl b/tests/test.tcl
index 0d5ebe0..6c17a4d 100644
--- a/tests/test.tcl
+++ b/tests/test.tcl
@@ -2,7 +2,7 @@ source base.tcl
set w .line
set graph [bltLineGraph $w]
-$graph configure -invertxy yes
+
#set graph [bltBarGraph $w]
#echo "done"