Skip to content

Commit

Permalink
plugins/EdgeBundling: Set edge shapes to Bézier curve if algo succeeded
Browse files Browse the repository at this point in the history
  • Loading branch information
anlambert committed Jun 5, 2024
1 parent 052f265 commit 92ccc64
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion plugins/general/EdgeBundling/EdgeBundling.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
*
* Copyright (C) 2019-2023 The Talipot developers
* Copyright (C) 2019-2024 The Talipot developers
*
* Talipot is a fork of Tulip, created by David Auber
* and the Tulip development Team from LaBRI, University of Bordeaux
Expand All @@ -12,6 +12,7 @@
*/

#include <talipot/Exception.h>
#include <talipot/ViewSettings.h>

#include "EdgeBundling.h"
#include "QuadTree.h"
Expand Down Expand Up @@ -687,6 +688,8 @@ bool EdgeBundling::run() {

ThreadManager::setNumberOfThreads(ThreadManager::getNumberOfProcs());

graph->getIntegerProperty("viewShape")->setAllEdgeValue(EdgeShape::BezierCurve);

return true;
}
//============================================================
Expand Down

0 comments on commit 92ccc64

Please sign in to comment.