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.
68 lines
2.0 KiB
C
68 lines
2.0 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
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) override;
|
||
|
|
||
|
//@{
|
||
|
/**
|
||
|
* 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() override;
|
||
|
|
||
|
int RequestUpdateExtent(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
|
||
|
|
||
|
/// Implementation of the algorithm.
|
||
|
int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
|
||
|
|
||
|
int FillInputPortInformation(int port, vtkInformation* info) override;
|
||
|
int FillOutputPortInformation(int port, vtkInformation* info) override;
|
||
|
|
||
|
private:
|
||
|
vtkExtractLevel(const vtkExtractLevel&) = delete;
|
||
|
void operator=(const vtkExtractLevel&) = delete;
|
||
|
|
||
|
class vtkSet;
|
||
|
vtkSet* Levels;
|
||
|
};
|
||
|
|
||
|
#endif
|