VTK  9.2.6
vtkLightCollection.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkLightCollection.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=========================================================================*/
39#ifndef vtkLightCollection_h
40#define vtkLightCollection_h
41
42#include "vtkCollection.h"
43#include "vtkRenderingCoreModule.h" // For export macro
44
45class vtkLight;
46
47class VTKRENDERINGCORE_EXPORT vtkLightCollection : public vtkCollection
48{
49public:
52 void PrintSelf(ostream& os, vtkIndent indent) override;
53
57 void AddItem(vtkLight* a);
58
64
70
71protected:
72 vtkLightCollection() = default;
73 ~vtkLightCollection() override = default;
74
75private:
76 // hide the standard AddItem from the user and the compiler.
77 void AddItem(vtkObject* o) { this->vtkCollection::AddItem(o); }
78
79private:
81 void operator=(const vtkLightCollection&) = delete;
82};
83
84#endif
create and manipulate ordered lists of objects
void AddItem(vtkObject *)
Add an object to the bottom of the list.
a simple class to control print indentation
Definition vtkIndent.h:49
an ordered list of lights
void AddItem(vtkLight *a)
Add a light to the bottom of the list.
~vtkLightCollection() override=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkLight * GetNextLight(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
vtkLightCollection()=default
vtkLight * GetNextItem()
Get the next light in the list.
static vtkLightCollection * New()
a virtual light for 3D rendering
Definition vtkLight.h:69
abstract base class for most VTK objects
Definition vtkObject.h:72
void * vtkCollectionSimpleIterator