VTK
vtkRotationalExtrusionFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkRotationalExtrusionFilter.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 =========================================================================*/
63 #ifndef vtkRotationalExtrusionFilter_h
64 #define vtkRotationalExtrusionFilter_h
65 
66 #include "vtkFiltersModelingModule.h" // For export macro
67 #include "vtkPolyDataAlgorithm.h"
68 
70 {
71 public:
73  void PrintSelf(ostream& os, vtkIndent indent);
74 
78 
80 
82  vtkSetClampMacro(Resolution,int,1,VTK_INT_MAX);
83  vtkGetMacro(Resolution,int);
85 
87 
88  vtkSetMacro(Capping,int);
89  vtkGetMacro(Capping,int);
90  vtkBooleanMacro(Capping,int);
92 
94 
95  vtkSetMacro(Angle,double);
96  vtkGetMacro(Angle,double);
98 
100 
101  vtkSetMacro(Translation,double);
102  vtkGetMacro(Translation,double);
104 
106 
107  vtkSetMacro(DeltaRadius,double);
108  vtkGetMacro(DeltaRadius,double);
110 
111 protected:
114 
117  int Capping;
118  double Angle;
119  double Translation;
120  double DeltaRadius;
121 private:
123  void operator=(const vtkRotationalExtrusionFilter&); // Not implemented.
124 };
125 
126 #endif
sweep polygonal data creating "skirt" from free edges and lines, and lines from vertices ...
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
#define VTK_INT_MAX
Definition: vtkType.h:132
#define VTKFILTERSMODELING_EXPORT
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.