VTK  9.5.20250806
vtkMapperCollection.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#ifndef vtkMapperCollection_h
16#define vtkMapperCollection_h
17
18#include "vtkCollection.h"
19#include "vtkMapper.h" // Needed for direct access to mapper methods in
20 // inline functions
21#include "vtkRenderingCoreModule.h" // For export macro
22#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
23
24VTK_ABI_NAMESPACE_BEGIN
25class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkMapperCollection : public vtkCollection
26{
27public:
30 void PrintSelf(ostream& os, vtkIndent indent) override;
31
36
40 vtkMapper* GetNextItem() { return static_cast<vtkMapper*>(this->GetNextItemAsObject()); }
41
46 {
47 return this->Bottom ? static_cast<vtkMapper*>(this->Bottom->Item) : nullptr;
48 }
49
55 {
56 return static_cast<vtkMapper*>(this->GetNextItemAsObject(cookie));
57 }
58
59protected:
61 ~vtkMapperCollection() override = default;
62
63private:
64 // hide the standard AddItem from the user and the compiler.
65 void AddItem(vtkObject* o) { this->vtkCollection::AddItem(o); }
66
68 void operator=(const vtkMapperCollection&) = delete;
69};
70
71VTK_ABI_NAMESPACE_END
72#endif
create and manipulate ordered lists of objects
void AddItem(vtkObject *)
Add an object to the bottom of the list.
vtkObject * GetNextItemAsObject()
Get the next item in the collection.
a simple class to control print indentation
Definition vtkIndent.h:108
an ordered list of mappers
void AddItem(vtkMapper *a)
Add an mapper to the bottom of the list.
vtkMapper * GetNextItem()
Get the next mapper in the list.
vtkMapper * GetLastItem()
Get the last mapper in the list.
~vtkMapperCollection() override=default
static vtkMapperCollection * New()
vtkMapperCollection()=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkMapper * GetNextMapper(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
abstract class specifies interface to map data to graphics primitives
Definition vtkMapper.h:98
abstract base class for most VTK objects
Definition vtkObject.h:162
void * vtkCollectionSimpleIterator
#define VTK_MARSHALAUTO