VTK
vtkPlanes.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPlanes.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 =========================================================================*/
45 #ifndef vtkPlanes_h
46 #define vtkPlanes_h
47 
48 #include "vtkCommonDataModelModule.h" // For export macro
49 #include "vtkImplicitFunction.h"
50 
51 class vtkPlane;
52 class vtkPoints;
53 class vtkDataArray;
54 
55 class VTKCOMMONDATAMODEL_EXPORT vtkPlanes : public vtkImplicitFunction
56 {
57 public:
59 
62  static vtkPlanes *New();
64  void PrintSelf(ostream& os, vtkIndent indent) override;
66 
67 
69 
74  double EvaluateFunction(double x[3]) override;
76 
80  void EvaluateGradient(double x[3], double n[3]) override;
81 
83 
86  virtual void SetPoints(vtkPoints*);
87  vtkGetObjectMacro(Points,vtkPoints);
89 
91 
95  void SetNormals(vtkDataArray* normals);
96  vtkGetObjectMacro(Normals,vtkDataArray);
98 
103  void SetFrustumPlanes(double planes[24]);
104 
106 
111  void SetBounds(const double bounds[6]);
112  void SetBounds(double xmin, double xmax, double ymin, double ymax,
113  double zmin, double zmax);
115 
119  int GetNumberOfPlanes();
120 
127  vtkPlane *GetPlane(int i);
128 
134  void GetPlane(int i, vtkPlane *plane);
135 
136 protected:
137  vtkPlanes();
138  ~vtkPlanes() override;
139 
143 
144 private:
145  double Planes[24];
146  double Bounds[6];
147 
148 private:
149  vtkPlanes(const vtkPlanes&) = delete;
150  void operator=(const vtkPlanes&) = delete;
151 };
152 
153 #endif
abstract interface for implicit functions
virtual double EvaluateFunction(double x[3])=0
Evaluate function at position x-y-z and return value.
vtkPlane * Plane
Definition: vtkPlanes.h:142
implicit function for convex set of planes
Definition: vtkPlanes.h:55
virtual void EvaluateGradient(double x[3], double g[3])=0
Evaluate function gradient at position x-y-z and pass back vector.
vtkPoints * Points
Definition: vtkPlanes.h:140
a simple class to control print indentation
Definition: vtkIndent.h:39
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:54
perform various plane computations
Definition: vtkPlane.h:37
vtkDataArray * Normals
Definition: vtkPlanes.h:141
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
represent and manipulate 3D points
Definition: vtkPoints.h:39