VTK  9.2.6
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 =========================================================================*/
123 #ifndef vtkParametricTorus_h
124 #define vtkParametricTorus_h
125 
126 #include "vtkCommonComputationalGeometryModule.h" // For export macro
127 #include "vtkParametricFunction.h"
128 
129 class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricTorus : public vtkParametricFunction
130 {
131 
132 public:
134  void PrintSelf(ostream& os, vtkIndent indent) override;
135 
147 
149 
153  vtkSetMacro(RingRadius, double);
154  vtkGetMacro(RingRadius, double);
156 
158 
161  vtkSetMacro(CrossSectionRadius, double);
162  vtkGetMacro(CrossSectionRadius, double);
164 
168  int GetDimension() override { return 2; }
169 
178  void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
179 
193  double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override;
194 
195 protected:
198 
199  // Variables
200  double RingRadius;
202 
203 private:
204  vtkParametricTorus(const vtkParametricTorus&) = delete;
205  void operator=(const vtkParametricTorus&) = delete;
206 };
207 
208 #endif
a simple class to control print indentation
Definition: vtkIndent.h:119
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,...