VTK
vtkParametricKuen.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParametricKuen.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 =========================================================================*/
29 #ifndef vtkParametricKuen_h
30 #define vtkParametricKuen_h
31 
32 #include "vtkCommonComputationalGeometryModule.h" // For export macro
33 #include "vtkParametricFunction.h"
34 
36 {
37 public:
38 
40  void PrintSelf(ostream& os, vtkIndent indent);
41 
46  static vtkParametricKuen *New();
47 
49  virtual int GetDimension() {return 2;}
50 
56  virtual void Evaluate(double uvw[3], double Pt[3], double Duvw[9]);
57 
60  virtual double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]);
61 
62 protected:
65 
66 private:
67  vtkParametricKuen(const vtkParametricKuen&); // Not implemented.
68  void operator=(const vtkParametricKuen&); // Not implemented.
69 };
70 
71 #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)
Generate Kuens' surface.
#define VTKCOMMONCOMPUTATIONALGEOMETRY_EXPORT
abstract interface for parametric functions
a simple class to control print indentation
Definition: vtkIndent.h:38
static vtkObject * New()
virtual int GetDimension()