VTK  9.1.0
vtkParametricTorus.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParametricTorus.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 =========================================================================*/
120 #ifndef vtkParametricTorus_h
121 #define vtkParametricTorus_h
122 
123 #include "vtkCommonComputationalGeometryModule.h" // For export macro
124 #include "vtkParametricFunction.h"
125 
126 class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricTorus : public vtkParametricFunction
127 {
128 
129 public:
131  void PrintSelf(ostream& os, vtkIndent indent) override;
132 
144 
146 
150  vtkSetMacro(RingRadius, double);
151  vtkGetMacro(RingRadius, double);
153 
155 
158  vtkSetMacro(CrossSectionRadius, double);
159  vtkGetMacro(CrossSectionRadius, double);
161 
165  int GetDimension() override { return 2; }
166 
175  void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
176 
190  double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override;
191 
192 protected:
195 
196  // Variables
197  double RingRadius;
199 
200 private:
201  vtkParametricTorus(const vtkParametricTorus&) = delete;
202  void operator=(const vtkParametricTorus&) = delete;
203 };
204 
205 #endif
a simple class to control print indentation
Definition: vtkIndent.h:113
abstract interface for parametric functions
Generate a torus.
double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override
Calculate a user defined scalar using one or all of uvw, Pt, Duvw.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int GetDimension() override
Return the parametric dimension of the class.
void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override
A torus.
~vtkParametricTorus() override
static vtkParametricTorus * New()
Construct a torus with the following parameters: MinimumU = 0, MaximumU = 2*Pi, MinimumV = 0,...