VTK
vtkPlaneCollection.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPlaneCollection.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 vtkPlaneCollection_h
29 #define vtkPlaneCollection_h
30 
31 #include "vtkCommonDataModelModule.h" // For export macro
32 #include "vtkCollection.h"
33 
34 #include "vtkPlane.h" // Needed for inline methods
35 
36 class VTKCOMMONDATAMODEL_EXPORT vtkPlaneCollection : public vtkCollection
37 {
38 public:
40  static vtkPlaneCollection *New();
41 
45  void AddItem(vtkPlane *);
46 
50  vtkPlane *GetNextItem();
51 
55  vtkPlane *GetItem(int i) {
56  return static_cast<vtkPlane *>(this->GetItemAsObject(i));};
57 
62  vtkPlane *GetNextPlane(vtkCollectionSimpleIterator &cookie);
63 
64 protected:
66  ~vtkPlaneCollection() VTK_OVERRIDE {}
67 
68 
69 private:
70  // hide the standard AddItem from the user and the compiler.
71  void AddItem(vtkObject *o) { this->vtkCollection::AddItem(o); };
72 
73 private:
74  vtkPlaneCollection(const vtkPlaneCollection&) VTK_DELETE_FUNCTION;
75  void operator=(const vtkPlaneCollection&) VTK_DELETE_FUNCTION;
76 };
77 
78 inline void vtkPlaneCollection::AddItem(vtkPlane *f)
79 {
80  this->vtkCollection::AddItem(f);
81 }
82 
84 {
85  return static_cast<vtkPlane *>(this->GetNextItemAsObject());
86 }
87 
88 #endif
89 // VTK-HeaderTest-Exclude: vtkPlaneCollection.h
void * vtkCollectionSimpleIterator
Definition: vtkCollection.h:47
vtkPlane * GetItem(int i)
Get the ith plane in the list.
abstract base class for most VTK objects
Definition: vtkObject.h:59
maintain a list of planes
static vtkCollection * New()
Construct with empty list.
~vtkPlaneCollection() override
perform various plane computations
Definition: vtkPlane.h:37
vtkPlane * GetNextItem()
Get the next plane in the list.
void AddItem(vtkObject *)
Add an object to the list.
create and manipulate unsorted lists of objects
Definition: vtkCollection.h:51
vtkObject * GetNextItemAsObject()
Get the next item in the collection.
vtkObject * GetItemAsObject(int i)
Get the i'th item in the collection.