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.
66 lines
2.4 KiB
C
66 lines
2.4 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkExtractSelectedIds.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 vtkExtractSelectedIds
|
||
|
* @brief extract a list of cells from a dataset
|
||
|
*
|
||
|
* vtkExtractSelectedIds extracts a set of cells and points from within a
|
||
|
* vtkDataSet. The set of ids to extract are listed within a vtkSelection.
|
||
|
* This filter adds a scalar array called vtkOriginalCellIds that says what
|
||
|
* input cell produced each output cell. This is an example of a Pedigree ID
|
||
|
* which helps to trace back results. Depending on whether the selection has
|
||
|
* GLOBALIDS, VALUES or INDICES, the selection will use the contents of the
|
||
|
* array named in the GLOBALIDS DataSetAttribute, and arbitrary array, or the
|
||
|
* position (tuple id or number) within the cell or point array.
|
||
|
* @sa
|
||
|
* vtkSelection vtkExtractSelection
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkExtractSelectedIds_h
|
||
|
#define vtkExtractSelectedIds_h
|
||
|
|
||
|
#include "vtkExtractSelectionBase.h"
|
||
|
#include "vtkFiltersExtractionModule.h" // For export macro
|
||
|
|
||
|
class vtkSelection;
|
||
|
class vtkSelectionNode;
|
||
|
|
||
|
class VTKFILTERSEXTRACTION_EXPORT vtkExtractSelectedIds : public vtkExtractSelectionBase
|
||
|
{
|
||
|
public:
|
||
|
static vtkExtractSelectedIds* New();
|
||
|
vtkTypeMacro(vtkExtractSelectedIds, vtkExtractSelectionBase);
|
||
|
void PrintSelf(ostream& os, vtkIndent indent) override;
|
||
|
|
||
|
protected:
|
||
|
vtkExtractSelectedIds();
|
||
|
~vtkExtractSelectedIds() override;
|
||
|
|
||
|
// Overridden to indicate that the input must be a vtkDataSet.
|
||
|
int FillInputPortInformation(int port, vtkInformation* info) override;
|
||
|
|
||
|
// Usual data generation method
|
||
|
int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
|
||
|
|
||
|
int ExtractCells(vtkSelectionNode* sel, vtkDataSet* input, vtkDataSet* output);
|
||
|
int ExtractPoints(vtkSelectionNode* sel, vtkDataSet* input, vtkDataSet* output);
|
||
|
|
||
|
private:
|
||
|
vtkExtractSelectedIds(const vtkExtractSelectedIds&) = delete;
|
||
|
void operator=(const vtkExtractSelectedIds&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif
|