VTK  9.1.0
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 =========================================================================*/
148 #ifndef vtkPlanes_h
149 #define vtkPlanes_h
150 
151 #include "vtkCommonDataModelModule.h" // For export macro
152 #include "vtkImplicitFunction.h"
153 
154 class vtkPlane;
155 class vtkPoints;
156 class vtkDataArray;
157 
158 class VTKCOMMONDATAMODEL_EXPORT vtkPlanes : public vtkImplicitFunction
159 {
160 public:
162 
165  static vtkPlanes* New();
167  void PrintSelf(ostream& os, vtkIndent indent) override;
169 
171 
176  double EvaluateFunction(double x[3]) override;
178 
182  void EvaluateGradient(double x[3], double n[3]) override;
183 
185 
188  virtual void SetPoints(vtkPoints*);
189  vtkGetObjectMacro(Points, vtkPoints);
191 
193 
197  void SetNormals(vtkDataArray* normals);
198  vtkGetObjectMacro(Normals, vtkDataArray);
200 
205  void SetFrustumPlanes(double planes[24]);
206 
208 
213  void SetBounds(const double bounds[6]);
214  void SetBounds(double xmin, double xmax, double ymin, double ymax, double zmin, double zmax);
216 
221 
229 
235  void GetPlane(int i, vtkPlane* plane);
236 
237 protected:
239  ~vtkPlanes() override;
240 
244 
245 private:
246  double Planes[24];
247  double Bounds[6];
248 
249 private:
250  vtkPlanes(const vtkPlanes&) = delete;
251  void operator=(const vtkPlanes&) = delete;
252 };
253 
254 #endif
vtkPlanes::SetNormals
void SetNormals(vtkDataArray *normals)
Specify a list of normal vectors for the planes.
vtkPoints
represent and manipulate 3D points
Definition: vtkPoints.h:143
vtkPlane
perform various plane computations
Definition: vtkPlane.h:143
vtkPlanes::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, type information, and printing.
vtkPlanes::EvaluateGradient
void EvaluateGradient(double x[3], double n[3]) override
Evaluate planes gradient.
vtkImplicitFunction::EvaluateFunction
virtual double EvaluateFunction(double x[3])=0
Evaluate function at position x-y-z and return value.
vtkPlanes::SetFrustumPlanes
void SetFrustumPlanes(double planes[24])
An alternative method to specify six planes defined by the camera view frustrum.
vtkPlanes::Points
vtkPoints * Points
Definition: vtkPlanes.h:241
vtkDataArray
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:159
vtkPlanes
implicit function for convex set of planes
Definition: vtkPlanes.h:159
vtkPlanes::SetBounds
void SetBounds(const double bounds[6])
An alternative method to specify six planes defined by a bounding box.
vtkPlanes::Normals
vtkDataArray * Normals
Definition: vtkPlanes.h:242
vtkImplicitFunction
abstract interface for implicit functions
Definition: vtkImplicitFunction.h:80
vtkPlanes::GetNumberOfPlanes
int GetNumberOfPlanes()
Return the number of planes in the set of planes.
vtkPlanes::GetPlane
vtkPlane * GetPlane(int i)
Create and return a pointer to a vtkPlane object at the ith position.
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:113
vtkPlanes::GetPlane
void GetPlane(int i, vtkPlane *plane)
If i is within the allowable range, mutates the given plane's Normal and Origin to match the vtkPlane...
vtkPlanes::~vtkPlanes
~vtkPlanes() override
vtkPlanes::SetPoints
virtual void SetPoints(vtkPoints *)
Specify a list of points defining points through which the planes pass.
vtkPlanes::New
static vtkPlanes * New()
Standard methods for instantiation, type information, and printing.
vtkImplicitFunction.h
vtkPlanes::SetBounds
void SetBounds(double xmin, double xmax, double ymin, double ymax, double zmin, double zmax)
An alternative method to specify six planes defined by a bounding box.
vtkPlanes::EvaluateFunction
double EvaluateFunction(double x[3]) override
Evaluate plane equations.
vtkPlanes::vtkPlanes
vtkPlanes()
vtkPlanes::Plane
vtkPlane * Plane
Definition: vtkPlanes.h:243