/usr/include/vtk-6.2/vtkCirclePackFrontChainLayoutStrategy.h is in libvtk6-dev 6.2.0+dfsg1-10build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkCirclePackFrontChainLayoutStrategy.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.
-------------------------------------------------------------------------*/
// .NAME vtkCirclePackFrontChainLayoutStrategy - layout a vtkTree into packed circles
// using the front chain algorithm.
//
// .SECTION Description
// vtkCirclePackFrontChainLayoutStrategy assigns circles to each node of the input vtkTree
// using the front chain algorithm. The algorithm packs circles by searching a "front
// chain" of circles around the perimeter of the circles that have already been packed for
// the current level in the tree hierarchy. Searching the front chain is in general faster
// than searching all of the circles that have been packed at the current level.
//
// WARNING: The algorithm tends to break down and produce packings with overlapping
// circles when there is a large difference in the radii of the circles at a given
// level of the tree hierarchy. Roughly on the order a 1000:1 ratio of circle radii.
//
// Please see the following reference for more details on the algorithm.
//
// Title: "Visualization of large hierarchical data by circle packing"
// Authors: Weixin Wang, Hui Wang, Guozhong Dai, Hongan Wang
// Conference: Proceedings of the SIGCHI conference on Human Factors in computing systems
// Year: 2006
//
#ifndef vtkCirclePackFrontChainLayoutStrategy_h
#define vtkCirclePackFrontChainLayoutStrategy_h
#include "vtkInfovisLayoutModule.h" // For export macro
#include "vtkCirclePackLayoutStrategy.h"
class vtkCirclePackFrontChainLayoutStrategyImplementation;
class VTKINFOVISLAYOUT_EXPORT vtkCirclePackFrontChainLayoutStrategy : public vtkCirclePackLayoutStrategy
{
public:
static vtkCirclePackFrontChainLayoutStrategy *New();
vtkTypeMacro(vtkCirclePackFrontChainLayoutStrategy,vtkCirclePackLayoutStrategy);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Perform the layout of the input tree, and store the circle
// bounds of each vertex as a tuple in a data array.
// (Xcenter, Ycenter, Radius).
//
virtual void Layout(vtkTree *inputTree, vtkDataArray *areaArray,
vtkDataArray* sizeArray);
// Description:
// Width and Height define the size of the output window that the
// circle packing is placed inside. Defaults to Width 1, Height 1
vtkGetMacro(Width, int);
vtkSetMacro(Width, int);
vtkGetMacro(Height, int);
vtkSetMacro(Height, int);
protected:
vtkCirclePackFrontChainLayoutStrategy();
~vtkCirclePackFrontChainLayoutStrategy();
char * CirclesFieldName;
int Width;
int Height;
private:
vtkCirclePackFrontChainLayoutStrategyImplementation* pimpl; // Private implementation
vtkCirclePackFrontChainLayoutStrategy(const vtkCirclePackFrontChainLayoutStrategy&); // Not implemented.
void operator=(const vtkCirclePackFrontChainLayoutStrategy&); // Not implemented.
};
#endif
|