VTK  9.1.0
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
40class VTKFILTERSMODELING_EXPORT vtkVolumeOfRevolutionFilter : public vtkUnstructuredGridAlgorithm
41{
42public:
44 void PrintSelf(ostream& os, vtkIndent indent) override;
45
51
53
57 vtkSetClampMacro(Resolution, int, 1, VTK_INT_MAX);
58 vtkGetMacro(Resolution, int);
60
62
65 vtkSetClampMacro(SweepAngle, double, -360., 360.);
66 vtkGetMacro(SweepAngle, double);
68
70
73 vtkSetVector3Macro(AxisPosition, double);
74 vtkGetVector3Macro(AxisPosition, double);
76
78
81 vtkSetVector3Macro(AxisDirection, double);
82 vtkGetVector3Macro(AxisDirection, double);
84
86
91 vtkSetClampMacro(OutputPointsPrecision, int, SINGLE_PRECISION, DEFAULT_PRECISION);
92 vtkGetMacro(OutputPointsPrecision, int);
94
95protected:
98
100
102
105 double AxisPosition[3];
106 double AxisDirection[3];
108
109private:
111 void operator=(const vtkVolumeOfRevolutionFilter&) = delete;
112};
113
114#endif
a simple class to control print indentation
Definition: vtkIndent.h:113
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only unstructured grid as output.
sweep data about a line to create a volume
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkVolumeOfRevolutionFilter * New()
Create object with sweep angle of 360 degrees, resolution = 12, axis position (0,0,...
~vtkVolumeOfRevolutionFilter() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int FillInputPortInformation(int, vtkInformation *) override
Fill the input port information objects for this algorithm.
#define VTK_INT_MAX
Definition: vtkType.h:155