VTK
vtkParametricPluckerConoid.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParametricPluckerConoid.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 vtkParametricPluckerConoid_h
34 #define vtkParametricPluckerConoid_h
35 
36 #include "vtkCommonComputationalGeometryModule.h" // For export macro
37 #include "vtkParametricFunction.h"
38 
40 {
41 public:
42 
43 
45  void PrintSelf(ostream& os, vtkIndent indent);
46 
48 
49  vtkGetMacro(N, int);
50  vtkSetMacro(N, int);
52 
58 
60  virtual int GetDimension() {return 2;}
61 
67  virtual void Evaluate(double uvw[3], double Pt[3], double Duvw[9]);
68 
71  virtual double EvaluateScalar(double uvw[3], double Pt[3], double Duvw[9]);
72 
73 protected:
76 
77  // Variables
78  int N;
79 
80 private:
81  vtkParametricPluckerConoid(const vtkParametricPluckerConoid&); // Not implemented.
82  void operator=(const vtkParametricPluckerConoid&); // Not implemented.
83 };
84 
85 #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 Plucker's conoid surface.
a simple class to control print indentation
Definition: vtkIndent.h:38
static vtkObject * New()