lemon/graph_to_eps.h
changeset 2618 6aa6fcaeaea5
parent 2569 12c2c5c4330b
     1.1 --- a/lemon/graph_to_eps.h	Tue Jul 22 11:29:57 2008 +0000
     1.2 +++ b/lemon/graph_to_eps.h	Fri Sep 19 15:14:41 2008 +0000
     1.3 @@ -1001,7 +1001,7 @@
     1.4        }
     1.5        else for(EdgeIt e(g);e!=INVALID;++e)
     1.6  	if((!_undirected||g.source(e)<g.target(e))&&_edgeWidths[e]>0
     1.7 -	   &&g.source(e)!=g.target(e))
     1.8 +	   &&g.source(e)!=g.target(e)) {
     1.9  	  if(_drawArrows) {
    1.10  	    dim2::Point<double> d(mycoords[g.target(e)]-mycoords[g.source(e)]);
    1.11  	    double rn=_nodeSizes[g.target(e)]*_nodeScale;
    1.12 @@ -1030,6 +1030,7 @@
    1.13  		  << _edgeColors[e].green() << ' '
    1.14  		  << _edgeColors[e].blue() << ' '
    1.15  		  << _edgeWidths[e]*_edgeWidthScale << " l\n";
    1.16 +	}
    1.17        os << "grestore\n";
    1.18      }
    1.19      if(_showNodes) {