diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2020-03-13 21:03:50 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2020-03-13 21:03:50 (GMT) |
commit | b7344e9a22b4e5e1e51945c907962bf927375c65 (patch) | |
tree | bcaf59ce76548e06de50feef63d2e12c5b99fb79 /tksao/frame/marker.C | |
parent | bdf4cb8f92a397068ebb996312871813b3e7d231 (diff) | |
download | blt-b7344e9a22b4e5e1e51945c907962bf927375c65.zip blt-b7344e9a22b4e5e1e51945c907962bf927375c65.tar.gz blt-b7344e9a22b4e5e1e51945c907962bf927375c65.tar.bz2 |
mv vector out from tksao
Diffstat (limited to 'tksao/frame/marker.C')
-rw-r--r-- | tksao/frame/marker.C | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tksao/frame/marker.C b/tksao/frame/marker.C index ab678a8..375846f 100644 --- a/tksao/frame/marker.C +++ b/tksao/frame/marker.C @@ -393,9 +393,9 @@ void Marker::renderPSInclude(PSColorSpace mode) ostringstream str; str << "newpath " - << ll.TkCanvasPs(parent->canvas) << ' ' + << parent->TkCanvasPs(ll) << ' ' << "moveto " - << ur.TkCanvasPs(parent->canvas) << ' ' + << parent->TkCanvasPs(ur) << ' ' << "lineto stroke" << endl << ends; Tcl_AppendResult(parent->interp, str.str().c_str(), NULL); } @@ -414,7 +414,7 @@ void Marker::renderPSText(PSColorSpace mode) << " scalefont setfont" << endl; Vector bbc = bbox.center(); - Vector tt = Vector(bbc[0], bbox.ll[1]).TkCanvasPs(parent->canvas); + Vector tt = parent->TkCanvasPs(Vector(bbc[0], bbox.ll[1])); str << "gsave" << endl << "newpath " << endl << tt << " moveto" << endl @@ -437,9 +437,9 @@ void Marker::renderPSArrow(const Vector& p1, const Vector& p2, Vector* vv = arrow(p1,p2,sys); ostringstream str; str << "newpath " << endl - << vv[0].TkCanvasPs(parent->canvas) << " moveto" << endl; + << parent->TkCanvasPs(vv[0]) << " moveto" << endl; for (int ii=1; ii<6; ii++) - str << vv[ii].TkCanvasPs(parent->canvas) << " lineto" << endl; + str << parent->TkCanvasPs(vv[ii]) << " lineto" << endl; str << "closepath fill" << endl << ends; Tcl_AppendResult(parent->interp, (char*)str.str().c_str(), NULL); delete [] vv; |