VTK
vtkVolumeOfRevolutionFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkVolumeOfRevolutionFilter.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 =========================================================================*/
34 #ifndef vtkVolumeOfRevolutionFilter_h
35 #define vtkVolumeOfRevolutionFilter_h
36 
37 #include "vtkFiltersModelingModule.h" // For export macro
39 
40 class VTKFILTERSMODELING_EXPORT vtkVolumeOfRevolutionFilter :
42 {
43 public:
45  void PrintSelf(ostream& os, vtkIndent indent) override;
46 
52 
54 
58  vtkSetClampMacro(Resolution,int,1,VTK_INT_MAX);
59  vtkGetMacro(Resolution,int);
61 
63 
66  vtkSetClampMacro(SweepAngle,double,-360.,360.);
67  vtkGetMacro(SweepAngle,double);
69 
71 
74  vtkSetVector3Macro(AxisPosition,double);
75  vtkGetVector3Macro(AxisPosition,double);
77 
79 
82  vtkSetVector3Macro(AxisDirection,double);
83  vtkGetVector3Macro(AxisDirection,double);
85 
87 
92  vtkSetClampMacro(OutputPointsPrecision, int, SINGLE_PRECISION,
93  DEFAULT_PRECISION);
94  vtkGetMacro(OutputPointsPrecision, int);
96 
97 protected:
99  ~vtkVolumeOfRevolutionFilter() override;
100 
102  vtkInformationVector *) override;
103 
104  int FillInputPortInformation(int, vtkInformation *) override;
105 
107  double SweepAngle;
108  double AxisPosition[3];
109  double AxisDirection[3];
111 
112 private:
114  void operator=(const vtkVolumeOfRevolutionFilter&) = delete;
115 };
116 
117 #endif
VTK_INT_MAX
#define VTK_INT_MAX
Definition: vtkType.h:159
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:35
vtkVolumeOfRevolutionFilter::OutputPointsPrecision
int OutputPointsPrecision
Definition: vtkVolumeOfRevolutionFilter.h:110
vtkUnstructuredGridAlgorithm::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
This is called by the superclass.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:33
vtkUnstructuredGridAlgorithm::FillInputPortInformation
int FillInputPortInformation(int port, vtkInformation *info) override
Fill the input port information objects for this algorithm.
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:80
vtkVolumeOfRevolutionFilter::SweepAngle
double SweepAngle
Definition: vtkVolumeOfRevolutionFilter.h:107
vtkUnstructuredGridAlgorithm::New
static vtkUnstructuredGridAlgorithm * New()
vtkUnstructuredGridAlgorithm::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkUnstructuredGridAlgorithm.h
vtkUnstructuredGridAlgorithm
Superclass for algorithms that produce only unstructured grid as output.
Definition: vtkUnstructuredGridAlgorithm.h:40
vtkVolumeOfRevolutionFilter::Resolution
int Resolution
Definition: vtkVolumeOfRevolutionFilter.h:106
vtkVolumeOfRevolutionFilter
sweep data about a line to create a volume
Definition: vtkVolumeOfRevolutionFilter.h:40