The circular layout algorithm. More...
#include <ogdf/misclayout/CircularLayout.h>
Public Member Functions | |
CircularLayout () | |
Creates an instance of circular layout. More... | |
~CircularLayout () | |
The algorithm call | |
virtual void | call (GraphAttributes &GA) override |
Computes a circular layout for graph attributes GA . More... | |
Optional parameters | |
double | minDistCircle () const |
Returns the option minDistCircle. More... | |
void | minDistCircle (double x) |
Sets the option minDistCircle to x . More... | |
double | minDistLevel () const |
Returns the option minDistLevel. More... | |
void | minDistLevel (double x) |
Sets the option minDistLevel to x . More... | |
double | minDistSibling () const |
Returns the option minDistSibling. More... | |
void | minDistSibling (double x) |
Sets the option minDistSibling to x . More... | |
double | minDistCC () const |
Returns the option minDistCC. More... | |
void | minDistCC (double x) |
Sets the option minDistCC to x . More... | |
double | pageRatio () const |
Returns the option pageRatio. More... | |
void | pageRatio (double x) |
Sets the option pageRatio to x . More... | |
Public Member Functions inherited from ogdf::LayoutModule | |
LayoutModule () | |
Initializes a layout module. More... | |
virtual | ~LayoutModule () |
void | operator() (GraphAttributes &GA) |
Computes a layout of graph GA . More... | |
Private Member Functions | |
void | assignClustersByBiconnectedComponents (ClusterStructure &C) |
void | assignPrefAngle (ClusterStructure &C, const Array< double > &outerRadius, Array< double > &preferedAngle, int c, double r1) |
void | computePreferedAngles (ClusterStructure &C, const Array< double > &outerRadius, Array< double > &preferedAngle) |
void | doCall (GraphAttributes &AG, ClusterStructure &C) |
int | sizeBC (node vB) |
Private Attributes | |
double | m_minDistCC |
The minimal distance between connected components. More... | |
double | m_minDistCircle |
The minimal distance between nodes on a circle. More... | |
double | m_minDistLevel |
The minimal distance between father and child circle. More... | |
double | m_minDistSibling |
The minimal distance between circles on same level. More... | |
double | m_pageRatio |
The page ratio used for packing connected components. More... | |
The circular layout algorithm.
The implementation used in CircularLayout is based on the following publication:
Ugur Dogrusöz, Brendan Madden, Patrick Madden: Circular Layout in the Graph Layout Toolkit. Proc. Graph Drawing 1996, LNCS 1190, pp. 92-100, 1997.
Circular layout provides the following optional parameters.
Option | Type | Default | Description |
---|---|---|---|
minDistCircle | double | 20.0 | The minimal distance between nodes on a circle. |
minDistLevel | double | 20.0 | The minimal distance between father and child circle. |
minDistSibling | double | 10.0 | The minimal distance between circles on same level. |
minDistCC | double | 20.0 | The minimal distance between connected components. |
pageRatio | double | 1.0 | The page ratio used for packing connected components. |
Definition at line 76 of file CircularLayout.h.
ogdf::CircularLayout::CircularLayout | ( | ) |
Creates an instance of circular layout.
|
inline |
Definition at line 82 of file CircularLayout.h.
|
private |
|
private |
|
overridevirtual |
Computes a circular layout for graph attributes GA
.
Implements ogdf::LayoutModule.
|
private |
|
private |
|
inline |
Returns the option minDistCC.
Definition at line 116 of file CircularLayout.h.
|
inline |
Sets the option minDistCC to x
.
Definition at line 119 of file CircularLayout.h.
|
inline |
Returns the option minDistCircle.
Definition at line 98 of file CircularLayout.h.
|
inline |
Sets the option minDistCircle to x
.
Definition at line 101 of file CircularLayout.h.
|
inline |
Returns the option minDistLevel.
Definition at line 104 of file CircularLayout.h.
|
inline |
Sets the option minDistLevel to x
.
Definition at line 107 of file CircularLayout.h.
|
inline |
Returns the option minDistSibling.
Definition at line 110 of file CircularLayout.h.
|
inline |
Sets the option minDistSibling to x
.
Definition at line 113 of file CircularLayout.h.
|
inline |
Returns the option pageRatio.
Definition at line 122 of file CircularLayout.h.
|
inline |
Sets the option pageRatio to x
.
Definition at line 125 of file CircularLayout.h.
|
private |
|
private |
The minimal distance between connected components.
Definition at line 133 of file CircularLayout.h.
|
private |
The minimal distance between nodes on a circle.
Definition at line 130 of file CircularLayout.h.
|
private |
The minimal distance between father and child circle.
Definition at line 131 of file CircularLayout.h.
|
private |
The minimal distance between circles on same level.
Definition at line 132 of file CircularLayout.h.
|
private |
The page ratio used for packing connected components.
Definition at line 134 of file CircularLayout.h.