VTK  9.4.20250205
vtkSquarifyLayoutStrategy.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 vtkSquarifyLayoutStrategy_h
25#define vtkSquarifyLayoutStrategy_h
26
27#include "vtkInfovisLayoutModule.h" // For export macro
29
30VTK_ABI_NAMESPACE_BEGIN
31class vtkIdList;
32
33class VTKINFOVISLAYOUT_EXPORT vtkSquarifyLayoutStrategy : public vtkTreeMapLayoutStrategy
34{
35public:
38 void PrintSelf(ostream& os, vtkIndent indent) override;
39
44 void Layout(vtkTree* inputTree, vtkDataArray* coordsArray, vtkDataArray* sizeArray) override;
45
46protected:
49
50private:
51 void LayoutChildren(vtkTree* tree, vtkDataArray* coordsArray, vtkDataArray* sizeArray,
52 vtkIdType nchildren, vtkIdType parent, vtkIdType begin, float minX, float maxX, float minY,
53 float maxY);
54
56 void operator=(const vtkSquarifyLayoutStrategy&) = delete;
57};
58
59VTK_ABI_NAMESPACE_END
60#endif
abstract superclass for arrays of numeric data
list of point or cell ids
Definition vtkIdList.h:133
a simple class to control print indentation
Definition vtkIndent.h:108
uses the squarify tree map layout algorithm
void Layout(vtkTree *inputTree, vtkDataArray *coordsArray, vtkDataArray *sizeArray) override
Perform the layout of a tree and place the results as 4-tuples in coordsArray (Xmin,...
~vtkSquarifyLayoutStrategy() override
static vtkSquarifyLayoutStrategy * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
abstract superclass for all tree map layout strategies
A rooted tree data structure.
Definition vtkTree.h:155
int vtkIdType
Definition vtkType.h:315