lemon/graph_to_eps.h
changeset 1107 2b6bffe0e7e8
parent 908 c6f725eff737
parent 956 141f9c0db4a3
child 1159 7fdaa05a69a1
     1.1 --- a/lemon/graph_to_eps.h	Tue Dec 20 17:44:38 2011 +0100
     1.2 +++ b/lemon/graph_to_eps.h	Tue Dec 20 18:15:14 2011 +0100
     1.3 @@ -2,7 +2,7 @@
     1.4   *
     1.5   * This file is a part of LEMON, a generic C++ optimization library.
     1.6   *
     1.7 - * Copyright (C) 2003-2009
     1.8 + * Copyright (C) 2003-2010
     1.9   * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11   *
    1.12 @@ -142,7 +142,7 @@
    1.13    ///Constructor
    1.14    ///\param gr  Reference to the graph to be printed.
    1.15    ///\param ost Reference to the output stream.
    1.16 -  ///By default it is <tt>std::cout</tt>.
    1.17 +  ///By default, it is <tt>std::cout</tt>.
    1.18    ///\param pros If it is \c true, then the \c ostream referenced by \c os
    1.19    ///will be explicitly deallocated by the destructor.
    1.20    DefaultGraphToEpsTraits(const GR &gr, std::ostream& ost = std::cout,
    1.21 @@ -512,7 +512,7 @@
    1.22  
    1.23    ///Turn on/off pre-scaling
    1.24  
    1.25 -  ///By default graphToEps() rescales the whole image in order to avoid
    1.26 +  ///By default, graphToEps() rescales the whole image in order to avoid
    1.27    ///very big or very small bounding boxes.
    1.28    ///
    1.29    ///This (p)rescaling can be turned off with this function.
    1.30 @@ -1114,7 +1114,7 @@
    1.31  ///Generates an EPS file from a graph.
    1.32  ///\param g Reference to the graph to be printed.
    1.33  ///\param os Reference to the output stream.
    1.34 -///By default it is <tt>std::cout</tt>.
    1.35 +///By default, it is <tt>std::cout</tt>.
    1.36  ///
    1.37  ///This function also has a lot of
    1.38  ///\ref named-templ-func-param "named parameters",
    1.39 @@ -1126,7 +1126,7 @@
    1.40  ///              .arcWidthScale(.4).run();
    1.41  ///\endcode
    1.42  ///
    1.43 -///For more detailed examples see the \ref graph_to_eps_demo.cc demo file.
    1.44 +///For more detailed examples, see the \ref graph_to_eps_demo.cc demo file.
    1.45  ///
    1.46  ///\warning Don't forget to put the \ref GraphToEps::run() "run()"
    1.47  ///to the end of the parameter list.