Removed some unnecessary files.
     2  * src/lemon/graph_to_eps.h - Part of LEMON, a generic C++ optimization library
 
     4  * Copyright (C) 2004 Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
 
     5  * (Egervary Combinatorial Optimization Research Group, EGRES).
 
     7  * Permission to use, modify and distribute this software is granted
 
     8  * provided that this copyright notice appears in all copies. For
 
     9  * precise terms see the accompanying LICENSE file.
 
    11  * This software is provided "AS IS" with no warranty of any kind,
 
    12  * express or implied, and with no claim as to its suitability for any
 
    17 #ifndef LEMON_GRAPH_TO_EPS_H
 
    18 #define LEMON_GRAPH_TO_EPS_H
 
    27 #include<lemon/maps.h>
 
    28 #include<lemon/bezier.h>
 
    32 ///\brief Simple graph drawer
 
    34 ///\author Alpar Juttner
 
    38 ///Data structure representing RGB colors.
 
    40 ///Data structure representing RGB colors.
 
    46   ///Default constructor
 
    49   Color(double r,double g,double b) :_r(r),_g(g),_b(b) {};
 
    50   ///Returns the red component
 
    51   double getR() {return _r;}
 
    52   ///Returns the green component
 
    53   double getG() {return _g;}
 
    54   ///Returns the blue component
 
    55   double getB() {return _b;}
 
    56   ///Set the color components
 
    57   void set(double r,double g,double b) { _r=r;_g=g;_b=b; };
 
    60 ///Default traits class of \ref GraphToEps
 
    62 ///Default traits class of \ref GraphToEps
 
    64 ///\c G is the type of the underlying graph.
 
    66 struct DefaultGraphToEpsTraits
 
    69   typedef typename Graph::Node Node;
 
    70   typedef typename Graph::NodeIt NodeIt;
 
    71   typedef typename Graph::Edge Edge;
 
    72   typedef typename Graph::EdgeIt EdgeIt;
 
    73   typedef typename Graph::InEdgeIt InEdgeIt;
 
    74   typedef typename Graph::OutEdgeIt OutEdgeIt;
 
    81   ConstMap<typename Graph::Node,xy<double> > _coords;
 
    82   ConstMap<typename Graph::Node,double > _nodeSizes;
 
    83   ConstMap<typename Graph::Node,int > _nodeShapes;
 
    85   ConstMap<typename Graph::Node,Color > _nodeColors;
 
    86   ConstMap<typename Graph::Edge,Color > _edgeColors;
 
    88   ConstMap<typename Graph::Edge,double > _edgeWidths;
 
    90   double _edgeWidthScale;
 
    93   double _xBorder, _yBorder;
 
    95   double _nodeBorderQuotient;
 
    98   double _arrowLength, _arrowWidth;
 
   100   bool _showNodes, _showEdges;
 
   102   bool _enableParallel;
 
   106   ConstMap<typename Graph::Node,bool > _nodeTexts;  
 
   107   double _nodeTextSize;
 
   109   bool _showNodePsText;
 
   110   ConstMap<typename Graph::Node,bool > _nodePsTexts;  
 
   111   char *_nodePsTextsPreamble;
 
   114   bool _pleaseRemoveOsStream;
 
   118   ///\param _g is a reference to the graph to be printed
 
   119   ///\param _os is a reference to the output stream.
 
   120   ///\param _os is a reference to the output stream.
 
   121   ///\param _pros If it is \c true, then the \c ostream referenced by \c _os
 
   122   ///will be explicitly deallocated by the destructor.
 
   123   ///By default it is <tt>std::cout</tt>
 
   124   DefaultGraphToEpsTraits(const G &_g,std::ostream& _os=std::cout,
 
   127     _coords(xy<double>(1,1)), _nodeSizes(1.0), _nodeShapes(0),
 
   128     _nodeColors(Color(1,1,1)), _edgeColors(Color(0,0,0)),
 
   129     _edgeWidths(1), _edgeWidthScale(0.3),
 
   130     _nodeScale(1.0), _xBorder(10), _yBorder(10), _scale(1.0),
 
   131     _nodeBorderQuotient(.1),
 
   132     _drawArrows(false), _arrowLength(1), _arrowWidth(0.3),
 
   133     _showNodes(true), _showEdges(true),
 
   134     _enableParallel(false), _parEdgeDist(1),
 
   135     _showNodeText(false), _nodeTexts(false), _nodeTextSize(1),
 
   136     _showNodePsText(false), _nodePsTexts(false), _nodePsTextsPreamble(0),
 
   138     _pleaseRemoveOsStream(_pros) {}
 
   141 ///Helper class to implement the named parameters of \ref graphToEps()
 
   143 ///Helper class to implement the named parameters of \ref graphToEps()
 
   144 ///\todo Is 'helper class' a good name for this?
 
   146 template<class T> class GraphToEps : public T 
 
   148   typedef typename T::Graph Graph;
 
   149   typedef typename Graph::Node Node;
 
   150   typedef typename Graph::NodeIt NodeIt;
 
   151   typedef typename Graph::Edge Edge;
 
   152   typedef typename Graph::EdgeIt EdgeIt;
 
   153   typedef typename Graph::InEdgeIt InEdgeIt;
 
   154   typedef typename Graph::OutEdgeIt OutEdgeIt;
 
   156   static const int INTERPOL_PREC=20;
 
   160   enum NodeShapes { CIRCLE=0, SQUARE=1, DIAMOND=2 };
 
   165     edgeLess(const Graph &_g) : g(_g) {}
 
   166     bool operator()(Edge a,Edge b) const 
 
   168       Node ai=min(g.source(a),g.target(a));
 
   169       Node aa=max(g.source(a),g.target(a));
 
   170       Node bi=min(g.source(b),g.target(b));
 
   171       Node ba=max(g.source(b),g.target(b));
 
   173 	(ai==bi && (aa < ba || 
 
   174 		    (aa==ba && ai==g.source(a) && bi==g.target(b))));
 
   177   bool isParallel(Edge e,Edge f) const
 
   179     return (g.source(e)==g.source(f)&&g.target(e)==g.target(f))||
 
   180       (g.source(e)==g.target(f)&&g.target(e)==g.source(f));
 
   182   static xy<double> rot(xy<double> v) 
 
   184     return xy<double>(v.y,-v.x);
 
   187   static std::string psOut(const xy &p) 
 
   189       std::ostringstream os;	
 
   190       os << p.x << ' ' << p.y;
 
   195   GraphToEps(const T &t) : T(t), dontPrint(false) {};
 
   197   template<class X> struct CoordsTraits : public T {
 
   199     CoordsTraits(const T &t,const X &x) : T(t), _coords(x) {}
 
   201   ///Sets the map of the node coordinates
 
   203   ///Sets the map of the node coordinates.
 
   204   ///\param x must be a node map with xy<double> or xy<int> values. 
 
   205   template<class X> GraphToEps<CoordsTraits<X> > coords(const X &x) {
 
   207     return GraphToEps<CoordsTraits<X> >(CoordsTraits<X>(*this,x));
 
   209   template<class X> struct NodeSizesTraits : public T {
 
   211     NodeSizesTraits(const T &t,const X &x) : T(t), _nodeSizes(x) {}
 
   213   ///Sets the map of the node sizes
 
   215   ///Sets the map of the node sizes
 
   216   ///\param x must be a node map with \c double (or convertible) values. 
 
   217   template<class X> GraphToEps<NodeSizesTraits<X> > nodeSizes(const X &x)
 
   220     return GraphToEps<NodeSizesTraits<X> >(NodeSizesTraits<X>(*this,x));
 
   222   template<class X> struct NodeShapesTraits : public T {
 
   223     const X &_nodeShapes;
 
   224     NodeShapesTraits(const T &t,const X &x) : T(t), _nodeShapes(x) {}
 
   226   ///Sets the map of the node shapes
 
   228   ///Sets the map of the node shapes
 
   229   ///\param x must be a node map with \c int (or convertible) values. 
 
   230   ///\todo Incomplete doc.
 
   231   template<class X> GraphToEps<NodeShapesTraits<X> > nodeShapes(const X &x)
 
   234     return GraphToEps<NodeShapesTraits<X> >(NodeShapesTraits<X>(*this,x));
 
   236   template<class X> struct NodeTextsTraits : public T {
 
   238     NodeTextsTraits(const T &t,const X &x) : T(t), _nodeTexts(x) {}
 
   240   ///Sets the text printed on the nodes
 
   242   ///Sets the text printed on the nodes
 
   243   ///\param x must be a node map with type that can be pushed to a standard
 
   245   template<class X> GraphToEps<NodeTextsTraits<X> > nodeTexts(const X &x)
 
   249     return GraphToEps<NodeTextsTraits<X> >(NodeTextsTraits<X>(*this,x));
 
   251   template<class X> struct NodePsTextsTraits : public T {
 
   252     const X &_nodePsTexts;
 
   253     NodePsTextsTraits(const T &t,const X &x) : T(t), _nodePsTexts(x) {}
 
   255   ///Inserts a PostScript block to the nodes
 
   257   ///With this command it is possible to insert a verbatim PostScript
 
   258   ///block to the nodes.
 
   259   ///The PS current point will be moved to the centre of the node before
 
   260   ///the PostScript block inserted.
 
   262   ///Before and after the block a newline character is inserted to you
 
   263   ///don't have to bother with the separators.
 
   265   ///\param x must be a node map with type that can be pushed to a standard
 
   268   ///\sa nodePsTextsPreamble()
 
   269   ///\todo Offer the choise not to move to the centre but pass the coordinates
 
   270   ///to the Postscript block inserted.
 
   271   template<class X> GraphToEps<NodePsTextsTraits<X> > nodePsTexts(const X &x)
 
   274     _showNodePsText=true;
 
   275     return GraphToEps<NodePsTextsTraits<X> >(NodePsTextsTraits<X>(*this,x));
 
   277   template<class X> struct EdgeWidthsTraits : public T {
 
   278     const X &_edgeWidths;
 
   279     EdgeWidthsTraits(const T &t,const X &x) : T(t), _edgeWidths(x) {}
 
   281   ///Sets the map of the edge widths
 
   283   ///Sets the map of the edge widths
 
   284   ///\param x must be a edge map with \c double (or convertible) values. 
 
   285   template<class X> GraphToEps<EdgeWidthsTraits<X> > edgeWidths(const X &x)
 
   288     return GraphToEps<EdgeWidthsTraits<X> >(EdgeWidthsTraits<X>(*this,x));
 
   291   template<class X> struct NodeColorsTraits : public T {
 
   292     const X &_nodeColors;
 
   293     NodeColorsTraits(const T &t,const X &x) : T(t), _nodeColors(x) {}
 
   295   ///Sets the map of the node colors
 
   297   ///Sets the map of the node colors
 
   298   ///\param x must be a node map with \ref Color values. 
 
   299   template<class X> GraphToEps<NodeColorsTraits<X> >
 
   300   nodeColors(const X &x)
 
   303     return GraphToEps<NodeColorsTraits<X> >(NodeColorsTraits<X>(*this,x));
 
   305   template<class X> struct EdgeColorsTraits : public T {
 
   306     const X &_edgeColors;
 
   307     EdgeColorsTraits(const T &t,const X &x) : T(t), _edgeColors(x) {}
 
   309   ///Sets the map of the edge colors
 
   311   ///Sets the map of the edge colors
 
   312   ///\param x must be a edge map with \ref Color values. 
 
   313   template<class X> GraphToEps<EdgeColorsTraits<X> >
 
   314   edgeColors(const X &x)
 
   317     return GraphToEps<EdgeColorsTraits<X> >(EdgeColorsTraits<X>(*this,x));
 
   319   ///Sets a global scale factor for node sizes
 
   321   ///Sets a global scale factor for node sizes
 
   323   GraphToEps<T> &nodeScale(double d) {_nodeScale=d;return *this;}
 
   324   ///Sets a global scale factor for edge widths
 
   326   ///Sets a global scale factor for edge widths
 
   328   GraphToEps<T> &edgeWidthScale(double d) {_edgeWidthScale=d;return *this;}
 
   329   ///Sets a global scale factor for the whole picture
 
   331   ///Sets a global scale factor for the whole picture
 
   333   GraphToEps<T> &scale(double d) {_scale=d;return *this;}
 
   334   ///Sets the width of the border around the picture
 
   336   ///Sets the width of the border around the picture
 
   338   GraphToEps<T> &border(double b) {_xBorder=_yBorder=b;return *this;}
 
   339   ///Sets the width of the border around the picture
 
   341   ///Sets the width of the border around the picture
 
   343   GraphToEps<T> &border(double x, double y) {
 
   344     _xBorder=x;_yBorder=y;return *this;
 
   346   ///Sets whether to draw arrows
 
   348   ///Sets whether to draw arrows
 
   350   GraphToEps<T> &drawArrows(bool b=true) {_drawArrows=b;return *this;}
 
   351   ///Sets the length of the arrowheads
 
   353   ///Sets the length of the arrowheads
 
   355   GraphToEps<T> &arrowLength(double d) {_arrowLength*=d;return *this;}
 
   356   ///Sets the width of the arrowheads
 
   358   ///Sets the width of the arrowheads
 
   360   GraphToEps<T> &arrowWidth(double d) {_arrowWidth*=d;return *this;}
 
   362   ///Enables parallel edges
 
   364   ///Enables parallel edges
 
   365   ///\todo Partially implemented
 
   366   GraphToEps<T> &enableParallel(bool b=true) {_enableParallel=b;return *this;}
 
   372   GraphToEps<T> &parEdgeDist(double d) {_parEdgeDist*=d;return *this;}
 
   378   GraphToEps<T> &hideEdges(bool b=true) {_showEdges=!b;return *this;}
 
   383   GraphToEps<T> &hideNodes(bool b=true) {_showNodes=!b;return *this;}
 
   385   ///Sets the size of the node texts
 
   387   ///Sets the size of the node texts
 
   389   GraphToEps<T> &nodeTextSize(double d) {_nodeTextSize=d;return *this;}
 
   390   ///Gives a preamble block for node Postscript block.
 
   392   ///Gives a preamble block for node Postscript block.
 
   395   GraphToEps<T> & nodePsTextsPreamble(const char *str) {
 
   396     _nodePsTextsPreamble=s ;return *this;
 
   398   ///Sets whether the the graph is undirected
 
   400   ///Sets whether the the graph is undirected
 
   402   GraphToEps<T> &undir(bool b=true) {_undir=b;return *this;}
 
   403   ///Sets whether the the graph is directed
 
   405   ///Sets whether the the graph is directed.
 
   406   ///Use it to show the undirected edges as a pair of directed ones.
 
   407   GraphToEps<T> &bidir(bool b=true) {_undir=!b;return *this;}
 
   410   bool isInsideNode(xy<double> p, double r,int t) 
 
   414       return p.normSquare()<=r*r;
 
   416       return p.x<=r&&p.x>=-r&&p.y<=r&&p.y>=-r;
 
   418       return p.x+p.y<=r && p.x-p.y<=r && -p.x+p.y<=r && -p.x-p.y<=r;
 
   428   ///Like other functions using
 
   429   ///\ref named-templ-func-param "named template parameters",
 
   430   ///this function calles the algorithm itself, i.e. in this case
 
   431   ///it draws the graph.
 
   433     if(dontPrint) return;
 
   435     os << "%!PS-Adobe-2.0 EPSF-2.0\n";
 
   436     //\todo: Chech whether the graph is empty.
 
   437     BoundingBox<double> bb;
 
   438     for(NodeIt n(g);n!=INVALID;++n) {
 
   439       double ns=_nodeSizes[n]*_nodeScale;
 
   444     os << "%%BoundingBox: "
 
   445 	 << bb.left()*  _scale-_xBorder << ' '
 
   446 	 << bb.bottom()*_scale-_yBorder << ' '
 
   447 	 << bb.right()* _scale+_xBorder << ' '
 
   448 	 << bb.top()*   _scale+_yBorder << '\n';
 
   449     //x1 y1 x2 y2 x3 y3 cr cg cb w
 
   450     os << "/lb { setlinewidth setrgbcolor newpath moveto\n"
 
   451        << "      4 2 roll 1 index 1 index curveto stroke } bind def\n";
 
   452     os << "/l { setlinewidth setrgbcolor newpath moveto lineto stroke } bind def\n";
 
   454     os << "/c { newpath dup 3 index add 2 index moveto 0 360 arc closepath } bind def\n";
 
   456     os << "/sq { newpath 2 index 1 index add 2 index 2 index add moveto\n"
 
   457        << "      2 index 1 index sub 2 index 2 index add lineto\n"
 
   458        << "      2 index 1 index sub 2 index 2 index sub lineto\n"
 
   459        << "      2 index 1 index add 2 index 2 index sub lineto\n"
 
   460        << "      closepath pop pop pop} bind def\n";
 
   462     os << "/di { newpath 2 index 1 index add 2 index moveto\n"
 
   463        << "      2 index             2 index 2 index add lineto\n"
 
   464        << "      2 index 1 index sub 2 index             lineto\n"
 
   465        << "      2 index             2 index 2 index sub lineto\n"
 
   466        << "      closepath pop pop pop} bind def\n";
 
   468     os << "/nc { 0 0 0 setrgbcolor 5 index 5 index 5 index c fill\n"
 
   469        << "     setrgbcolor " << 1+_nodeBorderQuotient << " div c fill\n"
 
   471     os << "/nsq { 0 0 0 setrgbcolor 5 index 5 index 5 index sq fill\n"
 
   472        << "     setrgbcolor " << 1+_nodeBorderQuotient << " div sq fill\n"
 
   474     os << "/ndi { 0 0 0 setrgbcolor 5 index 5 index 5 index di fill\n"
 
   475        << "     setrgbcolor " << 1+_nodeBorderQuotient << " div di fill\n"
 
   477     os << "/arrl " << _arrowLength << " def\n";
 
   478     os << "/arrw " << _arrowWidth << " def\n";
 
   480     os << "/lrl { 2 index mul exch 2 index mul exch rlineto pop} bind def\n";
 
   481     //len w dx_norm dy_norm x1 y1 cr cg cb
 
   482     os << "/arr { setrgbcolor /y1 exch def /x1 exch def /dy exch def /dx exch def\n"
 
   483        << "       /w exch def /len exch def\n"
 
   484       //	 << "       0.1 setlinewidth x1 y1 moveto dx len mul dy len mul rlineto stroke"
 
   485        << "       newpath x1 dy w 2 div mul add y1 dx w 2 div mul sub moveto\n"
 
   486        << "       len w sub arrl sub dx dy lrl\n"
 
   487        << "       arrw dy dx neg lrl\n"
 
   488        << "       dx arrl w add mul dy w 2 div arrw add mul sub\n"
 
   489        << "       dy arrl w add mul dx w 2 div arrw add mul add rlineto\n"
 
   490        << "       dx arrl w add mul neg dy w 2 div arrw add mul sub\n"
 
   491        << "       dy arrl w add mul neg dx w 2 div arrw add mul add rlineto\n"
 
   492        << "       arrw dy dx neg lrl\n"
 
   493        << "       len w sub arrl sub neg dx dy lrl\n"
 
   494        << "       closepath fill } bind def\n";
 
   495     os << "/cshow { 2 index 2 index moveto dup stringwidth pop\n"
 
   496        << "         neg 2 div fosi .35 mul neg rmoveto show pop pop} def\n";
 
   499     if(_scale!=1.0) os << _scale << " dup scale\n";
 
   502       os << "%Edges:\ngsave\n";      
 
   503       if(_enableParallel) {
 
   504 	std::vector<Edge> el;
 
   505 	for(EdgeIt e(g);e!=INVALID;++e)
 
   506 	  if(!_undir||g.source(e)<g.target(e)) el.push_back(e);
 
   507 	sort(el.begin(),el.end(),edgeLess(g));
 
   509 	typename std::vector<Edge>::iterator j;
 
   510 	for(typename std::vector<Edge>::iterator i=el.begin();i!=el.end();i=j) {
 
   511 	  for(j=i+1;j!=el.end()&&isParallel(*i,*j);++j) ;
 
   514 	  for(typename std::vector<Edge>::iterator e=i;e!=j;++e)
 
   515 	    sw+=_edgeWidths[*e]*_edgeWidthScale+_parEdgeDist;
 
   518 	  xy<double> dvec(_coords[g.target(*i)]-_coords[g.source(*i)]);
 
   519 	  double l=sqrt(dvec.normSquare());
 
   520 	  xy<double> d(dvec/l);
 
   522 // 	  m=xy<double>(_coords[g.target(*i)]+_coords[g.source(*i)])/2.0;
 
   524 //  	  m=xy<double>(_coords[g.source(*i)])+
 
   525 // 	    dvec*(double(_nodeSizes[g.source(*i)])/
 
   526 // 	       (_nodeSizes[g.source(*i)]+_nodeSizes[g.target(*i)]));
 
   528  	  m=xy<double>(_coords[g.source(*i)])+
 
   529 	    d*(l+_nodeSizes[g.source(*i)]-_nodeSizes[g.target(*i)])/2.0;
 
   531 	  for(typename std::vector<Edge>::iterator e=i;e!=j;++e) {
 
   532 	    sw+=_edgeWidths[*e]*_edgeWidthScale/2.0;
 
   533 	    xy<double> mm=m+rot(d)*sw/.75;
 
   536 	      xy<double> s=_coords[g.source(*e)];
 
   537 	      xy<double> t=_coords[g.target(*e)];
 
   538 	      double rn=_nodeSizes[g.target(*e)]*_nodeScale;
 
   539 	      node_shape=_nodeShapes[g.target(*e)];
 
   540 	      Bezier3 bez(s,mm,mm,t);
 
   542 	      for(int i=0;i<INTERPOL_PREC;++i)
 
   543 		if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t2=(t1+t2)/2;
 
   545 	      xy<double> apoint=bez((t1+t2)/2);
 
   546 	      rn = _arrowLength+_edgeWidths[*e]*_edgeWidthScale;
 
   549 	      for(int i=0;i<INTERPOL_PREC;++i)
 
   550 		if((bez((t1+t2)/2)-apoint).normSquare()>rn) t1=(t1+t2)/2;
 
   552 	      xy<double> linend=bez((t1+t2)/2);	      
 
   553 	      bez=bez.before((t1+t2)/2);
 
   554 // 	      rn=_nodeSizes[g.source(*e)]*_nodeScale;
 
   555 // 	      node_shape=_nodeShapes[g.source(*e)];
 
   557 // 	      for(int i=0;i<INTERPOL_PREC;++i)
 
   558 // 		if(isInsideNode(bez((t1+t2)/2)-t,rn,node_shape)) t1=(t1+t2)/2;
 
   559 // 		else t2=(t1+t2)/2;
 
   560 // 	      bez=bez.after((t1+t2)/2);
 
   561 	      os << _edgeWidths[*e]*_edgeWidthScale << " setlinewidth "
 
   562 		 << _edgeColors[*e].getR() << ' '
 
   563 		 << _edgeColors[*e].getG() << ' '
 
   564 		 << _edgeColors[*e].getB() << " setrgbcolor newpath\n"
 
   565 		 << bez.p1.x << ' ' <<  bez.p1.y << " moveto\n"
 
   566 		 << bez.p2.x << ' ' << bez.p2.y << ' '
 
   567 		 << bez.p3.x << ' ' << bez.p3.y << ' '
 
   568 		 << bez.p4.x << ' ' << bez.p4.y << " curveto stroke\n";
 
   569 	      xy<double> dd(rot(linend-apoint));
 
   570 	      dd*=(.5*_edgeWidths[*e]*_edgeWidthScale+_arrowWidth)/
 
   571 		sqrt(dd.normSquare());
 
   572 	      os << "newpath " << psOut(apoint) << " moveto "
 
   573 		 << psOut(linend+dd) << " lineto "
 
   574 		 << psOut(linend-dd) << " lineto closepath fill\n";
 
   577 	      os << _coords[g.source(*e)].x << ' '
 
   578 		 << _coords[g.source(*e)].y << ' '
 
   579 		 << mm.x << ' ' << mm.y << ' '
 
   580 		 << _coords[g.target(*e)].x << ' '
 
   581 		 << _coords[g.target(*e)].y << ' '
 
   582 		 << _edgeColors[*e].getR() << ' '
 
   583 		 << _edgeColors[*e].getG() << ' '
 
   584 		 << _edgeColors[*e].getB() << ' '
 
   585 		 << _edgeWidths[*e]*_edgeWidthScale << " lb\n";
 
   587 	    sw+=_edgeWidths[*e]*_edgeWidthScale/2.0+_parEdgeDist;
 
   591       else for(EdgeIt e(g);e!=INVALID;++e)
 
   592 	if(!_undir||g.source(e)<g.target(e))
 
   594 	    xy<double> d(_coords[g.target(e)]-_coords[g.source(e)]);
 
   595 	    double rn=_nodeSizes[g.target(e)]*_nodeScale;
 
   596 	    int node_shape=_nodeShapes[g.target(e)];
 
   598 	    for(int i=0;i<INTERPOL_PREC;++i)
 
   599 	      if(isInsideNode((-(t1+t2)/2)*d,rn,node_shape)) t1=(t1+t2)/2;
 
   601 	    double l=sqrt(d.normSquare());
 
   604 	    os << l*(1-(t1+t2)/2) << ' '
 
   605 	       << _edgeWidths[e]*_edgeWidthScale << ' '
 
   606 	       << d.x << ' ' << d.y << ' '
 
   607 	       << _coords[g.source(e)].x << ' '
 
   608 	       << _coords[g.source(e)].y << ' '
 
   609 	       << _edgeColors[e].getR() << ' '
 
   610 	       << _edgeColors[e].getG() << ' '
 
   611 	       << _edgeColors[e].getB() << " arr\n";
 
   613 	  else os << _coords[g.source(e)].x << ' '
 
   614 		  << _coords[g.source(e)].y << ' '
 
   615 		  << _coords[g.target(e)].x << ' '
 
   616 		  << _coords[g.target(e)].y << ' '
 
   617 		  << _edgeColors[e].getR() << ' '
 
   618 		  << _edgeColors[e].getG() << ' '
 
   619 		  << _edgeColors[e].getB() << ' '
 
   620 		  << _edgeWidths[e]*_edgeWidthScale << " l\n";
 
   624       os << "%Nodes:\ngsave\n";
 
   625       for(NodeIt n(g);n!=INVALID;++n) {
 
   626 	os << _coords[n].x << ' ' << _coords[n].y << ' '
 
   627 	   << _nodeSizes[n]*_nodeScale << ' '
 
   628 	   << _nodeColors[n].getR() << ' '
 
   629 	   << _nodeColors[n].getG() << ' '
 
   630 	   << _nodeColors[n].getB() << ' ';
 
   631 	switch(_nodeShapes[n]) {
 
   644       os << "%Node texts:\ngsave\n";
 
   645       os << "/fosi " << _nodeTextSize << " def\n";
 
   646       os << "(Helvetica) findfont fosi scalefont setfont\n";
 
   647       os << "0 0 0 setrgbcolor\n";
 
   648       for(NodeIt n(g);n!=INVALID;++n)
 
   649 	os << _coords[n].x << ' ' << _coords[n].y
 
   650 	   << " (" << _nodeTexts[n] << ") cshow\n";
 
   653     if(_showNodePsText) {
 
   654       os << "%Node PS blocks:\ngsave\n";
 
   655       for(NodeIt n(g);n!=INVALID;++n)
 
   656 	os << _coords[n].x << ' ' << _coords[n].y
 
   657 	   << " moveto\n" << _nodePsTexts[n] << "\n";
 
   664     if(_pleaseRemoveOsStream) {delete &os;}
 
   669 ///Generates an EPS file from a graph
 
   672 ///Generates an EPS file from a graph.
 
   673 ///\param g is a reference to the graph to be printed
 
   674 ///\param os is a reference to the output stream.
 
   675 ///By default it is <tt>std::cout</tt>
 
   677 ///This function also has a lot of
 
   678 ///\ref named-templ-func-param "named parameters",
 
   679 ///they are declared as the members of class \ref GraphToEps. The following
 
   680 ///example shows how to use these parameters.
 
   682 /// graphToEps(g).scale(10).coords(coords)
 
   683 ///              .nodeScale(2).nodeSizes(sizes)
 
   684 ///              .edgeWidthScale(.4).run();
 
   686 ///\warning Don't forget to put the \ref GraphToEps::run() "run()"
 
   687 ///to the end of the parameter list.
 
   689 ///\sa graphToEps(G &g, char *file_name)
 
   691 GraphToEps<DefaultGraphToEpsTraits<G> > 
 
   692 graphToEps(G &g, std::ostream& os=std::cout)
 
   695     GraphToEps<DefaultGraphToEpsTraits<G> >(DefaultGraphToEpsTraits<G>(g,os));
 
   698 ///Generates an EPS file from a graph
 
   701 ///This function does the same as
 
   702 ///\ref graphToEps(G &g,std::ostream& os)
 
   703 ///but it writes its output into the file \c file_name
 
   704 ///instead of a stream.
 
   705 ///\sa graphToEps(G &g, std::ostream& os)
 
   707 GraphToEps<DefaultGraphToEpsTraits<G> > 
 
   708 graphToEps(G &g,char *file_name)
 
   710   return GraphToEps<DefaultGraphToEpsTraits<G> >
 
   711     (DefaultGraphToEpsTraits<G>(g,*new std::ofstream(file_name),true));
 
   714 } //END OF NAMESPACE LEMON
 
   716 #endif // LEMON_GRAPH_TO_EPS_H