lemon/eps.cc
changeset 2207 75a29ac69c19
parent 2013 02e70e25aac5
child 2391 14a343be7a5a
     1.1 --- a/lemon/eps.cc	Wed Sep 06 11:39:22 2006 +0000
     1.2 +++ b/lemon/eps.cc	Thu Sep 07 13:27:16 2006 +0000
     1.3 @@ -69,13 +69,13 @@
     1.4      init(x1,y1,x2,y2);
     1.5    }
     1.6  
     1.7 -  EpsDrawer::EpsDrawer(std::ostream &os,xy<double> s) : local_stream(false),
     1.8 +  EpsDrawer::EpsDrawer(std::ostream &os,dim2::Point<double> s) : local_stream(false),
     1.9  							out(os)
    1.10    {
    1.11      init(0.0,0.0,s.x,s.y);
    1.12    }
    1.13  
    1.14 -  EpsDrawer::EpsDrawer(std::ostream &os,xy<double> a, xy<double> b) :
    1.15 +  EpsDrawer::EpsDrawer(std::ostream &os,dim2::Point<double> a, dim2::Point<double> b) :
    1.16      local_stream(false),
    1.17      out(os)
    1.18    {
    1.19 @@ -97,14 +97,14 @@
    1.20      init(x1,y1,x2,y2);
    1.21    }
    1.22    
    1.23 -  EpsDrawer::EpsDrawer(const std::string &name,xy<double> s) :
    1.24 +  EpsDrawer::EpsDrawer(const std::string &name,dim2::Point<double> s) :
    1.25      local_stream(true),
    1.26      out(*new std::ofstream(name.c_str()))
    1.27    {
    1.28      init(0.0,0.0,s.x,s.y);
    1.29    }
    1.30  
    1.31 -  EpsDrawer::EpsDrawer(const std::string &name,xy<double> a, xy<double> b) :
    1.32 +  EpsDrawer::EpsDrawer(const std::string &name,dim2::Point<double> a, dim2::Point<double> b) :
    1.33      local_stream(true),
    1.34      out(*new std::ofstream(name.c_str()))
    1.35    {