VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkOutlineCornerFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkOutlineCornerFilter.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 =========================================================================*/
29 #ifndef __vtkOutlineCornerFilter_h
30 #define __vtkOutlineCornerFilter_h
31 
32 #include "vtkFiltersSourcesModule.h" // For export macro
33 #include "vtkPolyDataAlgorithm.h"
35 
36 class VTKFILTERSSOURCES_EXPORT vtkOutlineCornerFilter : public vtkPolyDataAlgorithm
37 {
38 public:
39  vtkTypeMacro(vtkOutlineCornerFilter,vtkPolyDataAlgorithm);
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
43  static vtkOutlineCornerFilter *New();
44 
46 
48  vtkSetClampMacro(CornerFactor, double, 0.001, 0.5);
49  vtkGetMacro(CornerFactor, double);
51 
52 protected:
55 
57  virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
58  virtual int FillInputPortInformation(int port, vtkInformation *info);
59 
60  double CornerFactor;
61 private:
62  vtkOutlineCornerFilter(const vtkOutlineCornerFilter&); // Not implemented.
63  void operator=(const vtkOutlineCornerFilter&); // Not implemented.
64 };
65 
66 #endif
create wireframe outline corners for arbitrary data set
create wireframe outline corners around bounding box
vtkOutlineCornerSource * OutlineCornerSource