VTK  9.2.5
vtkVoxelContoursToSurfaceFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkVoxelContoursToSurfaceFilter.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 =========================================================================*/
65 #ifndef vtkVoxelContoursToSurfaceFilter_h
66 #define vtkVoxelContoursToSurfaceFilter_h
67 
68 #include "vtkFiltersGeneralModule.h" // For export macro
69 #include "vtkPolyDataAlgorithm.h"
70 
71 class VTKFILTERSGENERAL_EXPORT vtkVoxelContoursToSurfaceFilter : public vtkPolyDataAlgorithm
72 {
73 public:
76  void PrintSelf(ostream& os, vtkIndent indent) override;
77 
79 
85  vtkSetMacro(MemoryLimitInBytes, int);
86  vtkGetMacro(MemoryLimitInBytes, int);
88 
89  vtkSetVector3Macro(Spacing, double);
90  vtkGetVectorMacro(Spacing, double, 3);
91 
92 protected:
95 
97 
99 
100  double Spacing[3];
101 
102  double* LineList;
105 
106  double* SortedXList;
107  double* SortedYList;
109 
112 
115 
116  void AddLineToLineList(double x1, double y1, double x2, double y2);
117  void SortLineList();
118 
119  void CastLines(float* slice, double gridOrigin[3], int gridSize[3], int type);
120 
121  void PushDistances(float* ptr, int gridSize[3], int chunkSize);
122 
123 private:
125  void operator=(const vtkVoxelContoursToSurfaceFilter&) = delete;
126 };
127 
128 #endif
a simple class to control print indentation
Definition: vtkIndent.h:119
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only polydata as output.
void CastLines(float *slice, double gridOrigin[3], int gridSize[3], int type)
static vtkVoxelContoursToSurfaceFilter * New()
void PushDistances(float *ptr, int gridSize[3], int chunkSize)
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void AddLineToLineList(double x1, double y1, double x2, double y2)
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
@ type
Definition: vtkX3D.h:522