VTK  9.2.6
vtkOBBDicer.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkOBBDicer.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
31#ifndef vtkOBBDicer_h
32#define vtkOBBDicer_h
33
34#include "vtkDicer.h"
35#include "vtkFiltersGeneralModule.h" // For export macro
36
37class vtkOBBNode;
38class vtkShortArray;
39class vtkIdList;
40class vtkPoints;
41
42class VTKFILTERSGENERAL_EXPORT vtkOBBDicer : public vtkDicer
43{
44public:
45 vtkTypeMacro(vtkOBBDicer, vtkDicer);
46 void PrintSelf(ostream& os, vtkIndent indent) override;
47
51 static vtkOBBDicer* New();
52
53protected:
54 vtkOBBDicer() = default;
55 ~vtkOBBDicer() override = default;
56
57 // Usual data generation method
59
60 // implementation ivars and methods
61 void BuildTree(vtkIdList* ptIds, vtkOBBNode* OBBptr, vtkDataSet* input);
62 void MarkPoints(vtkOBBNode* OBBptr, vtkShortArray* groupIds);
63 void DeleteTree(vtkOBBNode* OBBptr);
65
66private:
67 vtkOBBDicer(const vtkOBBDicer&) = delete;
68 void operator=(const vtkOBBDicer&) = delete;
69};
70
71#endif
abstract class to specify dataset behavior
Definition vtkDataSet.h:57
abstract superclass to divide dataset into pieces
Definition vtkDicer.h:55
list of point or cell ids
Definition vtkIdList.h:31
a simple class to control print indentation
Definition vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
divide dataset into spatially aggregated pieces
Definition vtkOBBDicer.h:43
void BuildTree(vtkIdList *ptIds, vtkOBBNode *OBBptr, vtkDataSet *input)
vtkOBBDicer()=default
vtkPoints * PointsList
Definition vtkOBBDicer.h:64
static vtkOBBDicer * New()
Instantiate an object.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void MarkPoints(vtkOBBNode *OBBptr, vtkShortArray *groupIds)
~vtkOBBDicer() override=default
void DeleteTree(vtkOBBNode *OBBptr)
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called within ProcessRequest when a request asks the algorithm to do its work.
represent and manipulate 3D points
Definition vtkPoints.h:34
dynamic, self-adjusting array of short