VTK
vtkGraphHierarchicalBundle.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkGraphHierarchicalBundle.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
15 /*-------------------------------------------------------------------------
16  Copyright 2008 Sandia Corporation.
17  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18  the U.S. Government retains certain rights in this software.
19 -------------------------------------------------------------------------*/
57 #ifndef __vtkGraphHierarchicalBundle_h
58 #define __vtkGraphHierarchicalBundle_h
59 
60 #include "vtkPolyDataAlgorithm.h"
61 
63 {
64 public:
66 
68  void PrintSelf(ostream& os, vtkIndent indent);
69 
71 
74  vtkSetClampMacro(BundlingStrength, double, 0.0, 1.0);
75  vtkGetMacro(BundlingStrength, double);
77 
79 
82  vtkSetMacro(DirectMapping, bool);
83  vtkGetMacro(DirectMapping, bool);
84  vtkBooleanMacro(DirectMapping, bool);
86 
89 
90 protected:
93 
96 
98 
100 private:
101  vtkGraphHierarchicalBundle(const vtkGraphHierarchicalBundle&); // Not implemented.
102  void operator=(const vtkGraphHierarchicalBundle&); // Not implemented.
103 };
105 
106 #endif