VTK
vtkParametricEnneper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParametricEnneper.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 =========================================================================*/
33 #ifndef vtkParametricEnneper_h
34 #define vtkParametricEnneper_h
35 
36 #include "vtkCommonComputationalGeometryModule.h" // For export macro
37 #include "vtkParametricFunction.h"
38 
39 class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricEnneper :
41 {
42  public:
43 
45  void PrintSelf(ostream& os, vtkIndent indent) override;
46 
56  static vtkParametricEnneper *New();
57 
61  int GetDimension() override {return 2;}
62 
71  void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
72 
86  double EvaluateScalar(double uvw[3], double Pt[3],
87  double Duvw[9]) override;
88 
89  protected:
91  ~vtkParametricEnneper() override;
92 
93  private:
95  void operator=(const vtkParametricEnneper&) = delete;
96 };
97 
98 #endif
Generate Enneper's surface.
virtual double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9])=0
Calculate a user defined scalar using one or all of uvw, Pt, Duvw.
virtual void Evaluate(double uvw[3], double Pt[3], double Duvw[9])=0
Performs the mapping $f(uvw)->(Pt,Duvw)$f.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
abstract interface for parametric functions
a simple class to control print indentation
Definition: vtkIndent.h:33
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
int GetDimension() override
Return the parametric dimension of the class.