Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

Loading...
Searching...
No Matches
RandomPlacer.h
Go to the documentation of this file.
1
32#pragma once
33
34#include <ogdf/basic/basic.h>
36
37namespace ogdf {
38class MultilevelGraph;
39
41
45 void placeOneNode(MultilevelGraph& MLG, double radius);
46
48
49public:
50 RandomPlacer() : m_circleSizeFactor(1.0) {};
51 void placeOneLevel(MultilevelGraph& MLG) override;
52 void setCircleSize(double factor);
53};
54
55}
Abstract InitialPlacer places the nodes of the level into the next.
Basic declarations, included by all source files.
Base class for placer modules.
The random placer for multilevel layout.
void setCircleSize(double factor)
void placeOneLevel(MultilevelGraph &MLG) override
void placeOneNode(MultilevelGraph &MLG, double radius)
#define OGDF_EXPORT
Specifies that a function or class is exported by the OGDF dynamic library (shared object / DLL),...
Definition config.h:117
The namespace for all OGDF objects.