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
static vtkPistonAlgorithm * New()
A filter that contours on the GPU.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce only PistonDataObjects.
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)