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=========================================================================*/
48#ifndef vtkParametricEllipsoid_h
49#define vtkParametricEllipsoid_h
50
51#include "vtkCommonComputationalGeometryModule.h" // For export macro
53
54class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricEllipsoid : public vtkParametricFunction
55{
56public:
58 void PrintSelf(ostream& os, vtkIndent indent) override;
59
72
76 int GetDimension() override { return 2; }
77
79
82 vtkSetMacro(XRadius, double);
83 vtkGetMacro(XRadius, double);
85
87
90 vtkSetMacro(YRadius, double);
91 vtkGetMacro(YRadius, double);
93
95
98 vtkSetMacro(ZRadius, double);
99 vtkGetMacro(ZRadius, double);
101
110 void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
111
125 double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override;
126
127protected:
130
131 // Variables
132 double XRadius;
133 double YRadius;
134 double ZRadius;
135 double N1;
136 double N2;
137
138private:
140 void operator=(const vtkParametricEllipsoid&) = delete;
141};
142
143#endif
a simple class to control print indentation
Definition vtkIndent.h:49
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