COIN-OR::LEMON - Graph Library

Changeset 1573:b76a0af36f44 in lemon-0.x for demo


Ignore:
Timestamp:
07/20/05 10:06:32 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2072
Message:
  • graph_to_eps_demo.cc is rightly documented
  • Fix/improve documentation of graphToEps()
  • Missing const added to ColorSet::size();
File:
1 edited

Legend:

Unmodified
Added
Removed
  • demo/graph_to_eps_demo.cc

    r1435 r1573  
    1515 */
    1616
    17 #include<lemon/graph_to_eps.h>
    18 #include<lemon/maps.h>
    19 #include<lemon/list_graph.h>
    20 #include<lemon/graph_utils.h>
     17/// \ingroup demos
     18/// \file
     19/// \brief Demo of the graph grawing function \ref graphToEps()
     20///
     21/// This demo program shows examples how to  use the function \ref
     22/// graphToEps(). It takes no input but simply creates  six
     23/// <tt>.eps</tt> files demonstrating how to draw directed/undirected
     24/// graphs, how to handle parallel egdes, how to change the properties
     25/// (like color, shape, size, title etc.) of nodes and edges
     26/// individually using appropriate \ref maps-page "graphmaps".
    2127
    2228#include <cmath>
    2329
     30#include<lemon/graph_to_eps.h>
     31#include<lemon/list_graph.h>
    2432
    2533using namespace std;
     
    6775  IdMap<ListGraph,Node> id(g);
    6876
     77  cout << "Create 'graph_to_eps_demo_out.eps'" << endl;
    6978  graphToEps(g,"graph_to_eps_demo_out.eps").scale(10).coords(coords).
    7079    title("Sample .eps figure").
     
    7887    run();
    7988
     89
     90  cout << "Create 'graph_to_eps_demo_out_arr.eps'" << endl;
    8091  graphToEps(g,"graph_to_eps_demo_out_arr.eps").scale(10).
    8192    title("Sample .eps figure (with arrowheads)").
     
    102113  e=g.addEdge(n1,n2); ecolors[e]=7; widths[e]=1;
    103114
     115  cout << "Create 'graph_to_eps_demo_out_par.eps'" << endl;
    104116  graphToEps(g,"graph_to_eps_demo_out_par.eps").scale(10).
    105117    title("Sample .eps figure (parallel edges)").
     
    115127    run();
    116128 
     129  cout << "Create 'graph_to_eps_demo_out_par_arr.eps'" << endl;
    117130  graphToEps(g,"graph_to_eps_demo_out_par_arr.eps").scale(10).
    118131    title("Sample .eps figure (parallel edges and arrowheads)").
     
    129142    run();
    130143
     144  cout << "Create 'graph_to_eps_demo_out_a4.eps'" << endl;
    131145  graphToEps(g,"graph_to_eps_demo_out_a4.eps").scaleToA4().
    132146    title("Sample .eps figure (fits to A4)").
     
    154168  }
    155169 
     170  cout << "Create 'graph_to_eps_demo_out_colors.eps'" << endl;
    156171  graphToEps(h,"graph_to_eps_demo_out_colors.eps").scale(60).
    157     title("Sample .eps figure (parallel edges and arrowheads)").
     172    title("Sample .eps figure (ColorSet demo)").
    158173    copyright("(C) 2005 LEMON Project").
    159174    coords(hcoords).
Note: See TracChangeset for help on using the changeset viewer.