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 "vtkPolyDataAlgorithm.h"
67 
69 {
70 public:
72  void PrintSelf(ostream& os, vtkIndent indent);
73 
77 
79 
81  vtkSetClampMacro(Resolution,int,1,VTK_LARGE_INTEGER);
82  vtkGetMacro(Resolution,int);
84 
86 
87  vtkSetMacro(Capping,int);
88  vtkGetMacro(Capping,int);
89  vtkBooleanMacro(Capping,int);
91 
93 
94  vtkSetMacro(Angle,double);
95  vtkGetMacro(Angle,double);
97 
99 
100  vtkSetMacro(Translation,double);
101  vtkGetMacro(Translation,double);
103 
105 
106  vtkSetMacro(DeltaRadius,double);
107  vtkGetMacro(DeltaRadius,double);
109 
110 protected:
113 
116  int Capping;
117  double Angle;
118  double Translation;
119  double DeltaRadius;
120 private:
122  void operator=(const vtkRotationalExtrusionFilter&); // Not implemented.
123 };
124 
125 #endif
sweep polygonal data creating "skirt" from free edges and lines, and lines from vertices ...
#define VTK_GRAPHICS_EXPORT
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
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:37
Store zero or more vtkInformation instances.
#define VTK_LARGE_INTEGER
Definition: vtkType.h:148