VTK  9.2.6
vtkParametricEllipsoid.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkParametricEllipsoid.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=========================================================================*/
36#ifndef vtkParametricEllipsoid_h
37#define vtkParametricEllipsoid_h
38
39#include "vtkCommonComputationalGeometryModule.h" // For export macro
41
42class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricEllipsoid : public vtkParametricFunction
43{
44public:
46 void PrintSelf(ostream& os, vtkIndent indent) override;
47
60
64 int GetDimension() override { return 2; }
65
67
70 vtkSetMacro(XRadius, double);
71 vtkGetMacro(XRadius, double);
73
75
78 vtkSetMacro(YRadius, double);
79 vtkGetMacro(YRadius, double);
81
83
86 vtkSetMacro(ZRadius, double);
87 vtkGetMacro(ZRadius, double);
89
98 void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
99
113 double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override;
114
115protected:
118
119 // Variables
120 double XRadius;
121 double YRadius;
122 double ZRadius;
123 double N1;
124 double N2;
125
126private:
128 void operator=(const vtkParametricEllipsoid&) = delete;
129};
130
131#endif
a simple class to control print indentation
Definition vtkIndent.h:34
Generate an ellipsoid.
int GetDimension() override
Return the parametric dimension of the class.
~vtkParametricEllipsoid() override
void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override
An ellipsoid.
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.
static vtkParametricEllipsoid * New()
Construct an ellipsoid with the following parameters: MinimumU = 0, MaximumU = 2*Pi,...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
abstract interface for parametric functions