VTK  9.3.1
vtkCircularLayoutStrategy.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation
3 // SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
15 #ifndef vtkCircularLayoutStrategy_h
16 #define vtkCircularLayoutStrategy_h
17 
18 #include "vtkGraphLayoutStrategy.h"
19 #include "vtkInfovisLayoutModule.h" // For export macro
20 
21 VTK_ABI_NAMESPACE_BEGIN
22 class VTKINFOVISLAYOUT_EXPORT vtkCircularLayoutStrategy : public vtkGraphLayoutStrategy
23 {
24 public:
26 
28  void PrintSelf(ostream& os, vtkIndent indent) override;
29 
33  void Layout() override;
34 
35 protected:
37  ~vtkCircularLayoutStrategy() override;
38 
39 private:
41  void operator=(const vtkCircularLayoutStrategy&) = delete;
42 };
43 
44 VTK_ABI_NAMESPACE_END
45 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Places vertices around a circle.
abstract superclass for all graph layout strategies
a simple class to control print indentation
Definition: vtkIndent.h:28
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
virtual void Layout()=0
This is the layout method where the graph that was set in SetGraph() is laid out. ...