VTK  9.6.1
vtkPlaneCollection.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
15
16#ifndef vtkPlaneCollection_h
17#define vtkPlaneCollection_h
18
19#include "vtkCollection.h"
20#include "vtkCommonDataModelModule.h" // For export macro
21#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
22
23#include "vtkPlane.h" // Needed for inline methods
24
25VTK_ABI_NAMESPACE_BEGIN
26class VTKCOMMONDATAMODEL_EXPORT VTK_MARSHALAUTO vtkPlaneCollection : public vtkCollection
27{
28public:
31 void PrintSelf(ostream& os, vtkIndent indent) override;
32
36 void AddItem(vtkPlane*);
37
42
46 vtkPlane* GetItem(int i) { return static_cast<vtkPlane*>(this->GetItemAsObject(i)); }
47
53
54protected:
55 vtkPlaneCollection() = default;
56 ~vtkPlaneCollection() override = default;
57
58private:
59 // hide the standard AddItem from the user and the compiler.
60 void AddItem(vtkObject* o) { this->vtkCollection::AddItem(o); }
61
63 void operator=(const vtkPlaneCollection&) = delete;
64};
65
67{
69}
70
72{
73 return static_cast<vtkPlane*>(this->GetNextItemAsObject());
74}
75
76VTK_ABI_NAMESPACE_END
77#endif
void AddItem(vtkObject *)
Add given item to the bottom (end) of the collection.
vtkObject * GetItemAsObject(int i) VTK_FUTURE_CONST
Get the i'th item in the collection.
vtkObject * GetNextItemAsObject()
Get the next item in the collection.
a simple class to control print indentation
Definition vtkIndent.h:29
maintain a list of planes
vtkPlane * GetNextItem()
Get the next plane in the list.
vtkPlaneCollection()=default
~vtkPlaneCollection() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkPlaneCollection * New()
void AddItem(vtkPlane *)
Add a plane to the list.
vtkPlane * GetNextPlane(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
vtkPlane * GetItem(int i)
Get the ith plane in the list.
perform various plane computations
Definition vtkPlane.h:32
void * vtkCollectionSimpleIterator
#define VTK_MARSHALAUTO