Cloned library of VTK-5.0.0 with extra build files for internal package management.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

91 lines
2.5 KiB

/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkMapperCollection.h,v $
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkMapperCollection - a list of mappers
// .SECTION Description
// vtkMapperCollection represents and provides methods to manipulate a list of
// mappers (i.e., vtkMapper and subclasses). The list is unsorted and duplicate
// entries are not prevented.
// .SECTION see also
// vtkMapper vtkCollection
#ifndef __vtkMapperC_h
#define __vtkMapperC_h
#include "vtkCollection.h"
#include "vtkMapper.h" // Needed for direct access to mapper methods in
// inline functions
class VTK_RENDERING_EXPORT vtkMapperCollection : public vtkCollection
{
public:
static vtkMapperCollection *New();
vtkTypeRevisionMacro(vtkMapperCollection,vtkCollection);
virtual void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Add an mapper to the list.
void AddItem(vtkMapper *a) {
this->vtkCollection::AddItem(static_cast<vtkObject *>(a));};
// Description:
// Get the next mapper in the list.
vtkMapper *GetNextItem() {
return static_cast<vtkMapper *>(this->GetNextItemAsObject());};
// Description:
// Get the last mapper in the list.
vtkMapper *GetLastItem();
//BTX
// Description:
// Reentrant safe way to get an object in a collection. Just pass the
// same cookie back and forth.
vtkMapper *GetNextMapper(vtkCollectionSimpleIterator &cookie) {
return static_cast<vtkMapper *>(this->GetNextItemAsObject(cookie));};
//ETX
protected:
vtkMapperCollection() {};
~vtkMapperCollection() {};
private:
// hide the standard AddItem from the user and the compiler.
void AddItem(vtkObject *o) { this->vtkCollection::AddItem(o); };
private:
vtkMapperCollection(const vtkMapperCollection&); // Not implemented.
void operator=(const vtkMapperCollection&); // Not implemented.
};
inline vtkMapper *vtkMapperCollection::GetLastItem()
{
if ( this->Bottom == NULL )
{
return NULL;
}
else
{
return static_cast<vtkMapper *>(this->Bottom->Item);
}
}
#endif