diff -r c3ff11b0025c -r 75a29ac69c19 lemon/hypercube_graph.h --- a/lemon/hypercube_graph.h Wed Sep 06 11:39:22 2006 +0000 +++ b/lemon/hypercube_graph.h Thu Sep 07 13:27:16 2006 +0000 @@ -275,13 +275,13 @@ ///\code /// const int DIM = 3; /// HyperCubeGraph graph(DIM); - /// xy base[DIM]; + /// dim2::Point base[DIM]; /// for (int k = 0; k < DIM; ++k) { /// base[k].x = rand() / (RAND_MAX + 1.0); /// base[k].y = rand() / (RAND_MAX + 1.0); /// } - /// HyperCubeGraph::HyperMap > - /// pos(graph, base, base + DIM, xy(0.0, 0.0)); + /// HyperCubeGraph::HyperMap > + /// pos(graph, base, base + DIM, dim2::Point(0.0, 0.0)); ///\endcode /// /// \see HyperCubeGraph