VTK
vtkPistonContour.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPistonContour.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 =========================================================================*/
24 #ifndef vtkPistonContour_h
25 #define vtkPistonContour_h
26 
27 #include "vtkPistonAlgorithm.h"
28 
29 class VTKACCELERATORSPISTON_EXPORT vtkPistonContour : public vtkPistonAlgorithm
30 {
31 public:
33  static vtkPistonContour *New();
34  void PrintSelf(ostream &os, vtkIndent indent);
35 
37 
38  vtkSetMacro(IsoValue, float);
39  vtkGetMacro(IsoValue, float);
40 protected:
44 
46 
47  virtual int RequestData(vtkInformation* request,
48  vtkInformationVector** inputVector,
49  vtkInformationVector* outputVector);
51 
52  float IsoValue;
53 
54 private:
55  vtkPistonContour(const vtkPistonContour&); // Not implemented.
56  void operator=(const vtkPistonContour&); // Not implemented.
57 
58 };
59 
60 #endif
vtkPistonAlgorithm.h
vtkPistonContour::PrintSelf
void PrintSelf(ostream &os, vtkIndent indent)
vtkInformationVector
Store zero or more vtkInformation instances.
Definition: vtkInformationVector.h:41
vtkTypeMacro
#define vtkTypeMacro(thisClass, superclass)
Definition: vtkSetGet.h:642
vtkPistonContour::~vtkPistonContour
~vtkPistonContour()
vtkPistonAlgorithm
Superclass for algorithms that produce only PistonDataObjects.
Definition: vtkPistonAlgorithm.h:44
vtkPistonContour::IsoValue
float IsoValue
Definition: vtkPistonContour.h:52
vtkIndent
a simple class to control print indentation
Definition: vtkIndent.h:39
vtkPistonContour::New
static vtkPistonContour * New()
vtkGetMacro
#define vtkGetMacro(name, type)
Definition: vtkSetGet.h:93
vtkInformation
Store vtkAlgorithm input/output information.
Definition: vtkInformation.h:86
vtkSetMacro
vtkSetMacro(IgnoreDriverBugs, bool)
vtkPistonContour::RequestData
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
vtkPistonContour::vtkPistonContour
vtkPistonContour()
vtkPistonContour
A filter that contours on the GPU.
Definition: vtkPistonContour.h:30