You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.3 KiB
C
65 lines
2.3 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkBoxLayoutStrategy.h
|
||
|
|
||
|
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
|
||
|
All rights reserved.
|
||
|
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
|
||
|
|
||
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
||
|
PURPOSE. See the above copyright notice for more information.
|
||
|
|
||
|
=========================================================================*/
|
||
|
/*-------------------------------------------------------------------------
|
||
|
Copyright 2008 Sandia Corporation.
|
||
|
Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
|
||
|
the U.S. Government retains certain rights in this software.
|
||
|
-------------------------------------------------------------------------*/
|
||
|
/**
|
||
|
* @class vtkBoxLayoutStrategy
|
||
|
* @brief a tree map layout that puts vertices in square-ish boxes
|
||
|
*
|
||
|
*
|
||
|
* vtkBoxLayoutStrategy recursively partitions the space for children vertices
|
||
|
* in a tree-map into square regions (or regions very close to a square).
|
||
|
*
|
||
|
* @par Thanks:
|
||
|
* Thanks to Brian Wylie from Sandia National Laboratories for creating this class.
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkBoxLayoutStrategy_h
|
||
|
#define vtkBoxLayoutStrategy_h
|
||
|
|
||
|
#include "vtkInfovisLayoutModule.h" // For export macro
|
||
|
#include "vtkTreeMapLayoutStrategy.h"
|
||
|
|
||
|
class VTKINFOVISLAYOUT_EXPORT vtkBoxLayoutStrategy : public vtkTreeMapLayoutStrategy
|
||
|
{
|
||
|
public:
|
||
|
static vtkBoxLayoutStrategy* New();
|
||
|
|
||
|
vtkTypeMacro(vtkBoxLayoutStrategy, vtkTreeMapLayoutStrategy);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
/**
|
||
|
* Perform the layout of a tree and place the results as 4-tuples in
|
||
|
* coordsArray (Xmin, Xmax, Ymin, Ymax).
|
||
|
*/
|
||
|
void Layout(vtkTree* inputTree, vtkDataArray* coordsArray, vtkDataArray* sizeArray) override;
|
||
|
|
||
|
protected:
|
||
|
vtkBoxLayoutStrategy();
|
||
|
~vtkBoxLayoutStrategy() override;
|
||
|
|
||
|
private:
|
||
|
void LayoutChildren(vtkTree* inputTree, vtkDataArray* coordsArray, vtkIdType parentId,
|
||
|
float parentMinX, float parentMaxX, float parentMinY, float parentMaxY);
|
||
|
|
||
|
vtkBoxLayoutStrategy(const vtkBoxLayoutStrategy&) = delete;
|
||
|
void operator=(const vtkBoxLayoutStrategy&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif
|