-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathvtkPolyDataToImageStencilOBBTree.h
117 lines (95 loc) · 4.32 KB
/
vtkPolyDataToImageStencilOBBTree.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/*=========================================================================
Program: Visualization Toolkit
Module: $RCSfile: vtkPolyDataToImageStencilOBBTree.h,v $
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.
=========================================================================*/
// .NAME vtkPolyDataToImageStencilOBBTree - clip an image with polydata
// .SECTION Description
// vtkPolyDataToImageStencilOBBTree will convert a vtkPolyData into an image
// that can be used with vtkImageStencil or other vtk classes that apply
// a stencil to an image.
// .SECTION see also
// vtkPolyData vtkImageStencil vtkImplicitFunctionToImageStencil
#ifndef __vtkPolyDataToImageStencilOBBTree_h
#define __vtkPolyDataToImageStencilOBBTree_h
#include <vtkPoints.h>
#include "vtkImageStencilSource.h"
#include "vtkSmartPointer.h"
class vtkPolyData;
class vtkOBBTree;
class vtkImageData;
class vtkPolyDataToImageStencilOBBTree : public vtkImageStencilSource
{
public:
static vtkPolyDataToImageStencilOBBTree *New();
vtkTypeMacro(vtkPolyDataToImageStencilOBBTree, vtkImageStencilSource);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Specify the polydata to convert into a stencil.
virtual void SetInput(vtkPolyData *input);
virtual vtkPolyData *GetInput();
// Description:
// Set a vtkImageData that has the Spacing, Origin, and
// WholeExtent that will be used for the stencil. This
// input should be set to the image that you wish to
// apply the stencil to. If you use this method, then
// any values set with the SetOutputSpacing, SetOutputOrigin,
// and SetOutputWholeExtent methods will be ignored.
virtual void SetInformationInput(vtkImageData*);
vtkGetObjectMacro(InformationInput, vtkImageData);
// Description:
// Set the Origin to be used for the stencil. It should be
// set to the Origin of the image you intend to apply the
// stencil to. The default value is (0,0,0).
vtkSetVector3Macro(OutputOrigin, double);
vtkGetVector3Macro(OutputOrigin, double);
// Description:
// Set the Spacing to be used for the stencil. It should be
// set to the Spacing of the image you intend to apply the
// stencil to. The default value is (1,1,1)
vtkSetVector3Macro(OutputSpacing, double);
vtkGetVector3Macro(OutputSpacing, double);
// Description:
// Set the whole extent for the stencil (anything outside
// this extent will be considered to be "outside" the stencil).
// If this is not set, then the stencil will always use
// the requested UpdateExtent as the stencil extent.
vtkSetVector6Macro(OutputWholeExtent, int);
vtkGetVector6Macro(OutputWholeExtent, int);
// Description:
// Set the tolerance for doing spatial searches of the polydata.
vtkSetMacro(Tolerance, double);
vtkGetMacro(Tolerance, double);
protected:
vtkPolyDataToImageStencilOBBTree();
~vtkPolyDataToImageStencilOBBTree();
virtual int RequestData(vtkInformation *, vtkInformationVector **,
vtkInformationVector *);
virtual int RequestInformation(vtkInformation *, vtkInformationVector **,
vtkInformationVector *);
double Tolerance;
vtkOBBTree *OBBTree;
// Description:
// Set in subclasses where the primary input is not a vtkImageData.
vtkImageData *InformationInput;
// Description:
// Set in subclasses where the primary input is not a vtkImageData.
int OutputWholeExtent[6];
double OutputOrigin[3];
double OutputSpacing[3];
virtual void ReportReferences(vtkGarbageCollector*);
virtual int FillInputPortInformation(int, vtkInformation*);
private:
vtkPolyDataToImageStencilOBBTree(const vtkPolyDataToImageStencilOBBTree&); // Not implemented.
void operator=(const vtkPolyDataToImageStencilOBBTree&); // Not implemented.
};
void vtkTurnPointsIntoList(vtkSmartPointer<vtkPoints> points, int *&clist, int &clistlen,
int extent[6], double origin[3], double spacing[3],
int dim);
void vtkAddEntryToList(int *&clist, int &clistlen, int &clistmaxlen, int r);
#endif