summaryrefslogtreecommitdiffstats
path: root/src/graphlayout/graphlayout.cpp
diff options
context:
space:
mode:
authorTim Dwyer <tgdwyer@gmail.com>2006-07-12 02:26:13 +0000
committertgdwyer <tgdwyer@users.sourceforge.net>2006-07-12 02:26:13 +0000
commit63c7b54ca8a55514dacbd3444f5c2dc6c0661383 (patch)
tree711081ddfb2cd04257df046ac4b982fa8b6dfa58 /src/graphlayout/graphlayout.cpp
parentPreviously graph layout was done using the Kamada-Kawai layout algorithm (diff)
downloadinkscape-63c7b54ca8a55514dacbd3444f5c2dc6c0661383.tar.gz
inkscape-63c7b54ca8a55514dacbd3444f5c2dc6c0661383.zip
Added layout button and ideal connector length spinbox to connector toolbar
(bzr r1395)
Diffstat (limited to '')
-rw-r--r--src/graphlayout/graphlayout.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graphlayout/graphlayout.cpp b/src/graphlayout/graphlayout.cpp
index 42b867a33..69d26120d 100644
--- a/src/graphlayout/graphlayout.cpp
+++ b/src/graphlayout/graphlayout.cpp
@@ -59,7 +59,7 @@ void filterConnectors(GSList const *const items, list<SPItem *> &filtered) {
* connectors between them, and uses graph layout techniques to find
* a nice layout
*/
-void graphlayout(GSList const *const items) {
+void graphlayout(GSList const *const items, double edgeLength) {
if(!items) {
return;
}
@@ -124,7 +124,7 @@ void graphlayout(GSList const *const items) {
double eweights[E];
fill(eweights,eweights+E,1);
- ConstrainedMajorizationLayout alg(rs,es,eweights,width/n);
+ ConstrainedMajorizationLayout alg(rs,es,eweights,edgeLength);
alg.run();
for (list<SPItem *>::iterator it(selected.begin());