13#ifndef vtkEdgeLayoutStrategy_h 
   14#define vtkEdgeLayoutStrategy_h 
   16#include "vtkInfovisLayoutModule.h"  
   19VTK_ABI_NAMESPACE_BEGIN
 
   50  vtkSetStringMacro(EdgeWeightArrayName);
 
   51  vtkGetStringMacro(EdgeWeightArrayName);
 
abstract superclass for all edge layout strategies
 
~vtkEdgeLayoutStrategy() override
 
virtual void SetGraph(vtkGraph *graph)
Setting the graph for the layout strategy.
 
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
 
virtual void Layout()=0
This is the layout method where the graph that was set in SetGraph() is laid out.
 
virtual void Initialize()
This method allows the layout strategy to do initialization of data structures or whatever else it mi...
 
char * EdgeWeightArrayName
 
Base class for graph data types.
 
a simple class to control print indentation
 
abstract base class for most VTK objects