VTK  9.2.6
vtkDiscreteMarchingCubes.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkDiscreteMarchingCubes.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// .SECTION Thanks
15// Jim Miller at GE Research implemented the original version of this
16// filter.
17// This work was supported by PHS Research Grant No. 1 P41 RR13218-01
18// from the National Center for Research Resources and supported by a
19// grant from the DARPA, executed by the U.S. Army Medical Research
20// and Materiel Command/TATRC Cooperative Agreement,
21// Contract # W81XWH-04-2-0012.
22
23=========================================================================*/
74#ifndef vtkDiscreteMarchingCubes_h
75#define vtkDiscreteMarchingCubes_h
76
77#include "vtkFiltersGeneralModule.h" // For export macro
78#include "vtkMarchingCubes.h"
79
80class VTKFILTERSGENERAL_EXPORT vtkDiscreteMarchingCubes : public vtkMarchingCubes
81{
82public:
84
90 void PrintSelf(ostream& os, vtkIndent indent) override;
92
94
97 vtkSetMacro(ComputeAdjacentScalars, vtkTypeBool);
98 vtkGetMacro(ComputeAdjacentScalars, vtkTypeBool);
99 vtkBooleanMacro(ComputeAdjacentScalars, vtkTypeBool);
101
102protected:
105
108
109private:
111 void operator=(const vtkDiscreteMarchingCubes&) = delete;
112};
113
114#endif
generate object boundaries from labelled volumes
~vtkDiscreteMarchingCubes() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for instantiation, obtaining type information, and printing the state of an object.
static vtkDiscreteMarchingCubes * New()
Standard methods for instantiation, obtaining type information, and printing the state of an object.
a simple class to control print indentation
Definition vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
generate isosurface(s) from volume
int vtkTypeBool
Definition vtkABI.h:69