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 =========================================================================*/
30 #ifndef vtkParametricPseudosphere_h
31 #define vtkParametricPseudosphere_h
32 
33 #include "vtkCommonComputationalGeometryModule.h" // For export macro
34 #include "vtkParametricFunction.h"
35 
37 {
38 public:
39 
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
48 
50  virtual int GetDimension() {return 2;}
51 
57  virtual void Evaluate(double uvw[3], double Pt[3], double Duvw[9]);
58 
61  virtual double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]);
62 
63 protected:
66 
67 private:
68  vtkParametricPseudosphere(const vtkParametricPseudosphere&); // Not implemented.
69  void operator=(const vtkParametricPseudosphere&); // Not implemented.
70 };
71 
72 #endif
virtual double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9])=0
virtual void Evaluate(double uvw[3], double Pt[3], double Duvw[9])=0
void PrintSelf(ostream &os, vtkIndent indent)
#define VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT
abstract interface for parametric functions
Generate a pseudosphere.
a simple class to control print indentation
Definition: vtkIndent.h:38
static vtkObject * New()