summaryrefslogtreecommitdiffstats
path: root/src/bltGrElemLine.C
diff options
context:
space:
mode:
authorjoye <joye>2014-05-30 21:31:04 (GMT)
committerjoye <joye>2014-05-30 21:31:04 (GMT)
commitf8a01906e319c1d68d96f6bf20510cf771f6e7e3 (patch)
tree8014823bb5d7c11452240f645ca317ffbe6dbf87 /src/bltGrElemLine.C
parentb4e1bb34955d01729ee9e29bae532c06b71b1afa (diff)
downloadblt-f8a01906e319c1d68d96f6bf20510cf771f6e7e3.zip
blt-f8a01906e319c1d68d96f6bf20510cf771f6e7e3.tar.gz
blt-f8a01906e319c1d68d96f6bf20510cf771f6e7e3.tar.bz2
*** empty log message ***
Diffstat (limited to 'src/bltGrElemLine.C')
-rw-r--r--src/bltGrElemLine.C6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bltGrElemLine.C b/src/bltGrElemLine.C
index ba0bd68..7425f97 100644
--- a/src/bltGrElemLine.C
+++ b/src/bltGrElemLine.C
@@ -668,7 +668,7 @@ void LineElement::print(Blt_Ps ps)
if (fillPts_) {
// Create a path to use for both the polygon and its outline
Blt_Ps_Append(ps, "% start fill area\n");
- Blt_Ps_Polyline(ps, fillPts_, nFillPts_);
+ graphPtr_->printPolyline(ps, fillPts_, nFillPts_);
// If the background fill color was specified, draw the polygon in a
// solid fashion with that color
@@ -2768,8 +2768,8 @@ void LineElement::printTraces(Blt_Ps ps, LinePen* penPtr)
bltTrace *tracePtr = (bltTrace*)Blt_Chain_GetValue(link);
if (tracePtr->screenPts.length > 0) {
Blt_Ps_Append(ps, "% start trace\n");
- Blt_Ps_DrawPolyline(ps, tracePtr->screenPts.points,
- tracePtr->screenPts.length);
+ graphPtr_->printMaxPolyline(ps, tracePtr->screenPts.points,
+ tracePtr->screenPts.length);
Blt_Ps_Append(ps, "% end trace\n");
}
}