VTK  9.3.20240327
vtkParametricPseudosphere.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
38 #ifndef vtkParametricPseudosphere_h
39 #define vtkParametricPseudosphere_h
40 
41 #include "vtkCommonComputationalGeometryModule.h" // For export macro
42 #include "vtkParametricFunction.h"
43 
44 VTK_ABI_NAMESPACE_BEGIN
45 class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricPseudosphere : public vtkParametricFunction
46 {
47 public:
49  void PrintSelf(ostream& os, vtkIndent indent) override;
50 
61 
65  int GetDimension() override { return 2; }
66 
75  void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
76 
81  double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override;
82 
83 protected:
86 
87 private:
89  void operator=(const vtkParametricPseudosphere&) = delete;
90 };
91 
92 VTK_ABI_NAMESPACE_END
93 #endif
a simple class to control print indentation
Definition: vtkIndent.h:108
abstract interface for parametric functions
int GetDimension() override
Return the parametric dimension of the class.
~vtkParametricPseudosphere() override
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkParametricPseudosphere * New()
Construct a pseudosphere surface with the following parameters: (MinimumU, MaximumU) = (-5....
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 Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override
Pseudosphere surface.