VTK
vtkParametricPseudosphere.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParametricPseudosphere.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 =========================================================================*/
31 #ifndef vtkParametricPseudosphere_h
32 #define vtkParametricPseudosphere_h
33 
34 #include "vtkCommonComputationalGeometryModule.h" // For export macro
35 #include "vtkParametricFunction.h"
36 
37 class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricPseudosphere : public vtkParametricFunction
38 {
39 public:
40 
42  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
43 
54 
58  int GetDimension() VTK_OVERRIDE {return 2;}
59 
68  void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) VTK_OVERRIDE;
69 
74  double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) VTK_OVERRIDE;
75 
76 protected:
79 
80 private:
81  vtkParametricPseudosphere(const vtkParametricPseudosphere&) VTK_DELETE_FUNCTION;
82  void operator=(const vtkParametricPseudosphere&) VTK_DELETE_FUNCTION;
83 };
84 
85 #endif
a simple class to control print indentation
Definition: vtkIndent.h:40
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.