Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

ZeroPlacer.h
Go to the documentation of this file.
1 
32 #pragma once
33 
35 
36 namespace ogdf {
37 
39 
43  void placeOneNode(MultilevelGraph& MLG);
44 
45  double m_randomRange;
46 
47 public:
48  void placeOneLevel(MultilevelGraph& MLG) override;
49  ZeroPlacer();
50  void setRandomRange(double range);
51 };
52 
53 }
ogdf
The namespace for all OGDF objects.
Definition: AugmentationModule.h:36
ogdf::MultilevelGraph
Definition: MultilevelGraph.h:66
ogdf::ZeroPlacer
The zero placer for multilevel layout.
Definition: ZeroPlacer.h:42
ogdf::InitialPlacer
Base class for placer modules.
Definition: InitialPlacer.h:43
OGDF_EXPORT
#define OGDF_EXPORT
Specifies that a function or class is exported by the OGDF DLL.
Definition: config.h:101
InitialPlacer.h
Abstract InitialPlacer places the nodes of the level into the next.
ogdf::ZeroPlacer::m_randomRange
double m_randomRange
Definition: ZeroPlacer.h:45