VTK  9.3.0
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
24#ifndef vtkCircularLayoutStrategy_h
25#define vtkCircularLayoutStrategy_h
26
28#include "vtkInfovisLayoutModule.h" // For export macro
29
30VTK_ABI_NAMESPACE_BEGIN
31class VTKINFOVISLAYOUT_EXPORT vtkCircularLayoutStrategy : public vtkGraphLayoutStrategy
32{
33public:
35
37 void PrintSelf(ostream& os, vtkIndent indent) override;
38
42 void Layout() override;
43
44protected:
47
48private:
50 void operator=(const vtkCircularLayoutStrategy&) = delete;
51};
52
53VTK_ABI_NAMESPACE_END
54#endif
Places vertices around a circle.
void Layout() override
Perform the layout.
static vtkCircularLayoutStrategy * New()
~vtkCircularLayoutStrategy() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
abstract superclass for all graph layout strategies
a simple class to control print indentation
Definition vtkIndent.h:38