VTK
vtkPolyPlane.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPolyPlane.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 =========================================================================*/
31 #ifndef vtkPolyPlane_h
32 #define vtkPolyPlane_h
33 
34 #include "vtkCommonDataModelModule.h" // For export macro
35 #include "vtkImplicitFunction.h"
36 
37 class vtkPolyLine;
38 class vtkDoubleArray;
39 
41 {
42 public:
44  static vtkPolyPlane *New();
45 
47  void PrintSelf(ostream& os, vtkIndent indent);
48 
50 
51  double EvaluateFunction(double x[3]);
52  double EvaluateFunction(double x, double y, double z)
53  {return this->vtkImplicitFunction::EvaluateFunction(x, y, z); } ;
55 
57  void EvaluateGradient(double x[3], double g[3]);
58 
60 
62  virtual void SetPolyLine( vtkPolyLine * );
63  vtkGetObjectMacro( PolyLine, vtkPolyLine );
65 
67  virtual unsigned long GetMTime();
68 
69 protected:
70  vtkPolyPlane();
71  ~vtkPolyPlane();
72 
73  void ComputeNormals();
74 
75  double ExtrusionDirection[3];
80 
81 private:
82  vtkPolyPlane(const vtkPolyPlane&); // Not implemented.
83  void operator=(const vtkPolyPlane&); // Not implemented.
84 };
85 
86 #endif
abstract interface for implicit functions
virtual double EvaluateFunction(double x[3])=0
vtkDoubleArray * Normals
Definition: vtkPolyPlane.h:78
record modification and/or execution time
Definition: vtkTimeStamp.h:34
unsigned long GetMTime()
int vtkIdType
Definition: vtkType.h:275
virtual void EvaluateGradient(double x[3], double g[3])=0
vtkIdType ClosestPlaneIdx
Definition: vtkPolyPlane.h:79
dynamic, self-adjusting array of double
double EvaluateFunction(double x, double y, double z)
Definition: vtkPolyPlane.h:52
a simple class to control print indentation
Definition: vtkIndent.h:38
Implicit function that is generated by extrusion of a polyline along the Z axis.
Definition: vtkPolyPlane.h:40
vtkTimeStamp NormalComputeTime
Definition: vtkPolyPlane.h:77
void PrintSelf(ostream &os, vtkIndent indent)
static vtkObject * New()
vtkPolyLine * PolyLine
Definition: vtkPolyPlane.h:76
#define VTKCOMMONDATAMODEL_EXPORT
cell represents a set of 1D lines
Definition: vtkPolyLine.h:41