VTK  9.3.20240424
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
34#ifndef vtkCircularLayoutStrategy_h
35#define vtkCircularLayoutStrategy_h
36
38#include "vtkInfovisLayoutModule.h" // For export macro
39
40VTK_ABI_NAMESPACE_BEGIN
41class VTKINFOVISLAYOUT_EXPORT vtkCircularLayoutStrategy : public vtkGraphLayoutStrategy
42{
43public:
45
47 void PrintSelf(ostream& os, vtkIndent indent) override;
48
52 void Layout() override;
53
54protected:
57
58private:
60 void operator=(const vtkCircularLayoutStrategy&) = delete;
61};
62
63VTK_ABI_NAMESPACE_END
64#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:108