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.
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
/*=========================================================================
|
|
|
|
Program: Visualization Toolkit
|
|
Module: vtkBlockSelector.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 vtkBlockSelector
|
|
* @brief Selects cells or points contained in a block as defined in the
|
|
* vtkSelectionNode used to initialize this operator.
|
|
*
|
|
*/
|
|
|
|
#ifndef vtkBlockSelector_h
|
|
#define vtkBlockSelector_h
|
|
|
|
#include "vtkSelector.h"
|
|
|
|
class VTKFILTERSEXTRACTION_EXPORT vtkBlockSelector : public vtkSelector
|
|
{
|
|
public:
|
|
static vtkBlockSelector* New();
|
|
vtkTypeMacro(vtkBlockSelector, vtkSelector);
|
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
|
|
|
void Initialize(vtkSelectionNode* node) override;
|
|
|
|
protected:
|
|
vtkBlockSelector();
|
|
~vtkBlockSelector() override;
|
|
|
|
bool ComputeSelectedElements(vtkDataObject* input, vtkSignedCharArray* insidednessArray) override;
|
|
SelectionMode GetAMRBlockSelection(unsigned int level, unsigned int index) override;
|
|
SelectionMode GetBlockSelection(unsigned int compositeIndex) override;
|
|
|
|
private:
|
|
vtkBlockSelector(const vtkBlockSelector&) = delete;
|
|
void operator=(const vtkBlockSelector&) = delete;
|
|
|
|
class vtkInternals;
|
|
vtkInternals* Internals;
|
|
};
|
|
|
|
#endif
|