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 =========================================================================*/
25 #ifndef vtkPistonContour_h
26 #define vtkPistonContour_h
27 
28 #include "vtkPistonAlgorithm.h"
29 
30 class VTKACCELERATORSPISTON_EXPORT vtkPistonContour : public vtkPistonAlgorithm
31 {
32 public:
34  static vtkPistonContour *New();
35  void PrintSelf(ostream &os, vtkIndent indent);
36 
38 
41  vtkSetMacro(IsoValue, float);
42  vtkGetMacro(IsoValue, float);
44 
45 protected:
48 
52  virtual int RequestData(vtkInformation* request,
53  vtkInformationVector** inputVector,
54  vtkInformationVector* outputVector);
55 
56  float IsoValue;
57 
58 private:
59  vtkPistonContour(const vtkPistonContour&) VTK_DELETE_FUNCTION;
60  void operator=(const vtkPistonContour&) VTK_DELETE_FUNCTION;
61 
62 };
63 
64 #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:39
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
Method that does the actual calculation.
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
Store zero or more vtkInformation instances.
void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.