VTK
vtkParametricBour.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParametricBour.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 =========================================================================*/
28 #ifndef vtkParametricBour_h
29 #define vtkParametricBour_h
30 
31 #include "vtkCommonComputationalGeometryModule.h" // For export macro
32 #include "vtkParametricFunction.h"
33 
35 {
36 public:
37 
39  void PrintSelf(ostream& os, vtkIndent indent);
40 
45  static vtkParametricBour *New();
46 
48  virtual int GetDimension() {return 2;}
49 
55  virtual void Evaluate(double uvw[3], double Pt[3], double Duvw[9]);
56 
59  virtual double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]);
60 
61 protected:
64 
65 private:
66  vtkParametricBour(const vtkParametricBour&); // Not implemented.
67  void operator=(const vtkParametricBour&); // Not implemented.
68 };
69 
70 #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 Bour's minimal 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()