Changeset 167:30a7be486475 in glemon-0.x
- Timestamp:
- 10/19/06 09:49:40 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/glemon/trunk@3007
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
graph_displayer_canvas-edge.cc
r157 r167 2 2 #include <cmath> 3 3 4 const int minimum_edge_width= 2;4 const int minimum_edge_width=0; 5 5 6 6 int GraphDisplayerCanvas::resetEdgeWidth (Edge edge) -
graph_displayer_canvas.cc
r166 r167 1 1 #include "graph_displayer_canvas.h" 2 #include <lemon/random.h> 2 3 #include <cmath> 3 4 … … 262 263 { 263 264 NodeIt i((mytab.mapstorage).graph); 264 double r=random(); 265 266 double r=Random().getReal(); 267 265 268 dim2::Point<double> init(init_vector_length*sin(r),init_vector_length*cos(r)); 266 269 moveNode(init.x, init.y, nodesmap[i], i);
Note: See TracChangeset
for help on using the changeset viewer.