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.
69 lines
2.2 KiB
69 lines
2.2 KiB
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: $RCSfile: vtkPolyDataCollection.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 vtkPolyDataCollection - maintain a list of polygonal data objects
|
|
// .SECTION Description
|
|
// vtkPolyDataCollection is an object that creates and manipulates lists of
|
|
// datasets of type vtkPolyData.
|
|
|
|
// .SECTION See Also
|
|
// vtkDataSetCollection vtkCollection
|
|
|
|
#ifndef __vtkPolyDataCollection_h
|
|
#define __vtkPolyDataCollection_h
|
|
|
|
#include "vtkCollection.h"
|
|
|
|
#include "vtkPolyData.h" // Needed for static cast
|
|
|
|
class VTK_FILTERING_EXPORT vtkPolyDataCollection : public vtkCollection
|
|
{
|
|
public:
|
|
static vtkPolyDataCollection *New();
|
|
vtkTypeRevisionMacro(vtkPolyDataCollection,vtkCollection);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
// Description:
|
|
// Add a poly data to the list.
|
|
void AddItem(vtkPolyData *pd) {
|
|
this->vtkCollection::AddItem((vtkObject *)pd);};
|
|
|
|
// Description:
|
|
// Get the next poly data in the list.
|
|
vtkPolyData *GetNextItem() {
|
|
return static_cast<vtkPolyData *>(this->GetNextItemAsObject());};
|
|
|
|
//BTX
|
|
// Description:
|
|
// Reentrant safe way to get an object in a collection. Just pass the
|
|
// same cookie back and forth.
|
|
vtkPolyData *GetNextPolyData(vtkCollectionSimpleIterator &cookie) {
|
|
return static_cast<vtkPolyData *>(this->GetNextItemAsObject(cookie));};
|
|
//ETX
|
|
|
|
protected:
|
|
vtkPolyDataCollection() {};
|
|
~vtkPolyDataCollection() {};
|
|
|
|
private:
|
|
// hide the standard AddItem from the user and the compiler.
|
|
void AddItem(vtkObject *o) { this->vtkCollection::AddItem(o); };
|
|
|
|
private:
|
|
vtkPolyDataCollection(const vtkPolyDataCollection&); // Not implemented.
|
|
void operator=(const vtkPolyDataCollection&); // Not implemented.
|
|
};
|
|
|
|
|
|
#endif
|
|
|