27#ifndef vtkParametricEllipsoid_h 
   28#define vtkParametricEllipsoid_h 
   30#include "vtkCommonComputationalGeometryModule.h"  
   33VTK_ABI_NAMESPACE_BEGIN
 
   62  vtkSetMacro(XRadius, 
double);
 
   63  vtkGetMacro(XRadius, 
double);
 
   70  vtkSetMacro(YRadius, 
double);
 
   71  vtkGetMacro(YRadius, 
double);
 
   78  vtkSetMacro(ZRadius, 
double);
 
   79  vtkGetMacro(ZRadius, 
double);
 
   90  void Evaluate(
double uvw[3], 
double Pt[3], 
double Duvw[9]) 
override;
 
a simple class to control print indentation
 
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