VTK
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 
37 {
38 public:
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
44 
46 
48  vtkSetClampMacro(CornerFactor, double, 0.001, 0.5);
49  vtkGetMacro(CornerFactor, double);
51 
52 protected:
55 
59 
60  double CornerFactor;
61 private:
62  vtkOutlineCornerFilter(const vtkOutlineCornerFilter&); // Not implemented.
63  void operator=(const vtkOutlineCornerFilter&); // Not implemented.
64 };
65 
66 #endif
vtkOutlineCornerFilter::New
static vtkOutlineCornerFilter * New()
vtkOutlineCornerFilter::~vtkOutlineCornerFilter
~vtkOutlineCornerFilter()
vtkOutlineCornerFilter::CornerFactor
double CornerFactor
Definition: vtkOutlineCornerFilter.h:60
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkOutlineCornerFilter::RequestData
virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
vtkOutlineCornerFilter::vtkOutlineCornerFilter
vtkOutlineCornerFilter()
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkFiltersSourcesModule.h
vtkOutlineCornerFilter::FillInputPortInformation
virtual int FillInputPortInformation(int port, vtkInformation *info)
vtkPolyDataAlgorithm.h
vtkX3D::port
@ port
Definition: vtkX3D.h:447
vtkSetClampMacro
#define vtkSetClampMacro(name, type, min, max)
Definition: vtkSetGet.h:143
VTKFILTERSSOURCES_EXPORT
#define VTKFILTERSSOURCES_EXPORT
Definition: vtkFiltersSourcesModule.h:15
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkOutlineCornerSource
create wireframe outline corners around bounding box
Definition: vtkOutlineCornerSource.h:32
vtkOutlineCornerFilter
create wireframe outline corners for arbitrary data set
Definition: vtkOutlineCornerFilter.h:37
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkX3D::info
@ info
Definition: vtkX3D.h:376
vtkOutlineCornerFilter::OutlineCornerSource
vtkOutlineCornerSource * OutlineCornerSource
Definition: vtkOutlineCornerFilter.h:56
vtkOutlineCornerFilter::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkPolyDataAlgorithm
Superclass for algorithms that produce only polydata as output.
Definition: vtkPolyDataAlgorithm.h:44