VTK  9.0.2
vtkParametricKlein.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParametricKlein.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 =========================================================================*/
40 #ifndef vtkParametricKlein_h
41 #define vtkParametricKlein_h
42 
43 #include "vtkCommonComputationalGeometryModule.h" // For export macro
44 #include "vtkParametricFunction.h"
45 
46 class VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT vtkParametricKlein : public vtkParametricFunction
47 {
48 public:
50  void PrintSelf(ostream& os, vtkIndent indent) override;
51 
61  static vtkParametricKlein* New();
62 
66  int GetDimension() override { return 2; }
67 
76  void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override;
77 
91  double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]) override;
92 
93 protected:
95  ~vtkParametricKlein() override;
96 
97 private:
98  vtkParametricKlein(const vtkParametricKlein&) = delete;
99  void operator=(const vtkParametricKlein&) = delete;
100 };
101 
102 #endif
a simple class to control print indentation
Definition: vtkIndent.h:34
abstract interface for parametric functions
Generates a "classical" representation of a Klein bottle.
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 vtkParametricKlein * New()
Construct a Klein Bottle with the following parameters: MinimumU = 0, MaximumU = 2*Pi,...
~vtkParametricKlein() override
void Evaluate(double uvw[3], double Pt[3], double Duvw[9]) override
A Klein bottle.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
int GetDimension() override
Initialise the parameters for the Klein bottle.