VTK  9.3.20240418
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 
30 VTK_ABI_NAMESPACE_BEGIN
31 class vtkIdList;
32 
33 class VTKINFOVISLAYOUT_EXPORT vtkSquarifyLayoutStrategy : public vtkTreeMapLayoutStrategy
34 {
35 public:
38  void PrintSelf(ostream& os, vtkIndent indent) override;
39 
44  void Layout(vtkTree* inputTree, vtkDataArray* coordsArray, vtkDataArray* sizeArray) override;
45 
46 protected:
49 
50 private:
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 
59 VTK_ABI_NAMESPACE_END
60 #endif
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:155
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
static vtkSquarifyLayoutStrategy * New()
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
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:145
int vtkIdType
Definition: vtkType.h:315