You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.1 KiB
C++
75 lines
2.1 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkExtractLevel.h
|
|
|
|
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.
|
|
|
|
=========================================================================*/
|
|
/**
|
|
* @class vtkExtractLevel
|
|
* @brief extract levels between min and max from a
|
|
* hierarchical box dataset.
|
|
*
|
|
* vtkExtractLevel filter extracts the levels between (and including) the user
|
|
* specified min and max levels.
|
|
*/
|
|
|
|
#ifndef vtkExtractLevel_h
|
|
#define vtkExtractLevel_h
|
|
|
|
#include "vtkFiltersExtractionModule.h" // For export macro
|
|
#include "vtkMultiBlockDataSetAlgorithm.h"
|
|
|
|
class VTKFILTERSEXTRACTION_EXPORT vtkExtractLevel :
|
|
public vtkMultiBlockDataSetAlgorithm
|
|
{
|
|
public:
|
|
static vtkExtractLevel* New();
|
|
vtkTypeMacro(vtkExtractLevel, vtkMultiBlockDataSetAlgorithm);
|
|
void PrintSelf(ostream& os, vtkIndent indent);
|
|
|
|
|
|
//@{
|
|
/**
|
|
* Select the levels that should be extracted. All other levels will have no
|
|
* datasets in them.
|
|
*/
|
|
void AddLevel(unsigned int level);
|
|
void RemoveLevel(unsigned int level);
|
|
void RemoveAllLevels();
|
|
//@}
|
|
|
|
protected:
|
|
vtkExtractLevel();
|
|
~vtkExtractLevel();
|
|
|
|
virtual int RequestUpdateExtent(vtkInformation*, vtkInformationVector**,vtkInformationVector* );
|
|
|
|
/// Implementation of the algorithm.
|
|
virtual int RequestData(vtkInformation *,
|
|
vtkInformationVector **,
|
|
vtkInformationVector *);
|
|
|
|
virtual int FillInputPortInformation(int port,vtkInformation *info);
|
|
virtual int FillOutputPortInformation(int port,vtkInformation *info);
|
|
|
|
private:
|
|
vtkExtractLevel(const vtkExtractLevel&) VTK_DELETE_FUNCTION;
|
|
void operator=(const vtkExtractLevel&) VTK_DELETE_FUNCTION;
|
|
|
|
class vtkSet;
|
|
vtkSet* Levels;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|