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.
101 lines
3.2 KiB
C
101 lines
3.2 KiB
C
3 weeks ago
|
/*=========================================================================
|
||
|
|
||
|
Program: Visualization Toolkit
|
||
|
Module: vtkHyperTreeGridCellCenters.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 vtkHyperTreeGridCellCenters
|
||
|
* @brief generate points at center of hyper
|
||
|
* tree grid leaf cell centers.
|
||
|
*
|
||
|
*
|
||
|
* vtkHyperTreeGridCellCenters is a filter that takes as input an hyper
|
||
|
* tree grid and generates on output points at the center of the leaf
|
||
|
* cells in the hyper tree grid.
|
||
|
* These points can be used for placing glyphs (vtkGlyph3D) or labeling
|
||
|
* (vtkLabeledDataMapper).
|
||
|
* The cell attributes will be associated with the points on output.
|
||
|
*
|
||
|
* @warning
|
||
|
* You can choose to generate just points or points and vertex cells.
|
||
|
* Vertex cells are drawn during rendering; points are not. Use the ivar
|
||
|
* VertexCells to generate cells.
|
||
|
*
|
||
|
* @sa
|
||
|
* vtkCellCenters vtkHyperTreeGrid vtkGlyph3D
|
||
|
*
|
||
|
* @par Thanks:
|
||
|
* This class was written by Guenole Harel and Jacques-Bernard Lekien 2014
|
||
|
* This class was modified by Philippe Pebay, 2016
|
||
|
* This class was modified by Jacques-Bernard Lekien, 2018
|
||
|
* This work was supported by Commissariat a l'Energie Atomique
|
||
|
* CEA, DAM, DIF, F-91297 Arpajon, France.
|
||
|
*/
|
||
|
|
||
|
#ifndef vtkHyperTreeGridCellCenters_h
|
||
|
#define vtkHyperTreeGridCellCenters_h
|
||
|
|
||
|
#include "vtkCellCenters.h"
|
||
|
#include "vtkFiltersHyperTreeModule.h" // For export macro
|
||
|
|
||
|
class vtkBitArray;
|
||
|
class vtkDataSetAttributes;
|
||
|
class vtkHyperTreeGrid;
|
||
|
class vtkPolyData;
|
||
|
class vtkHyperTreeGridNonOrientedGeometryCursor;
|
||
|
|
||
|
class VTKFILTERSHYPERTREE_EXPORT vtkHyperTreeGridCellCenters : public vtkCellCenters
|
||
|
{
|
||
|
public:
|
||
|
static vtkHyperTreeGridCellCenters* New();
|
||
|
vtkTypeMacro(vtkHyperTreeGridCellCenters, vtkCellCenters);
|
||
|
void PrintSelf(ostream&, vtkIndent) override;
|
||
|
|
||
|
protected:
|
||
|
vtkHyperTreeGridCellCenters();
|
||
|
~vtkHyperTreeGridCellCenters() override;
|
||
|
|
||
|
vtkTypeBool ProcessRequest(vtkInformation* request, vtkInformationVector** inputVector,
|
||
|
vtkInformationVector* outputVector) override;
|
||
|
int FillInputPortInformation(int, vtkInformation*) override;
|
||
|
int RequestData(vtkInformation*, vtkInformationVector**, vtkInformationVector*) override;
|
||
|
|
||
|
/**
|
||
|
* Main routine to process individual trees in the grid
|
||
|
*/
|
||
|
virtual void ProcessTrees();
|
||
|
|
||
|
/**
|
||
|
* Recursively descend into tree down to leaves
|
||
|
*/
|
||
|
void RecursivelyProcessTree(vtkHyperTreeGridNonOrientedGeometryCursor*);
|
||
|
|
||
|
vtkHyperTreeGrid* Input;
|
||
|
vtkPolyData* Output;
|
||
|
|
||
|
vtkDataSetAttributes* InData;
|
||
|
vtkDataSetAttributes* OutData;
|
||
|
|
||
|
vtkPoints* Points;
|
||
|
|
||
|
vtkPointData* InPointData;
|
||
|
vtkPointData* OutPointData;
|
||
|
|
||
|
vtkBitArray* InMask;
|
||
|
|
||
|
private:
|
||
|
vtkHyperTreeGridCellCenters(const vtkHyperTreeGridCellCenters&) = delete;
|
||
|
void operator=(const vtkHyperTreeGridCellCenters&) = delete;
|
||
|
};
|
||
|
|
||
|
#endif // vtkHyperTreeGridCellCenters_h
|