VTK
vtkReverseSense.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkReverseSense.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 =========================================================================*/
36 #ifndef vtkReverseSense_h
37 #define vtkReverseSense_h
38 
39 #include "vtkFiltersCoreModule.h" // For export macro
40 #include "vtkPolyDataAlgorithm.h"
41 
43 {
44 public:
46  void PrintSelf(ostream& os, vtkIndent indent);
47 
50  static vtkReverseSense *New();
51 
53 
54  vtkSetMacro(ReverseCells,int);
55  vtkGetMacro(ReverseCells,int);
56  vtkBooleanMacro(ReverseCells,int);
58 
60 
61  vtkSetMacro(ReverseNormals,int);
62  vtkGetMacro(ReverseNormals,int);
63  vtkBooleanMacro(ReverseNormals,int);
65 
66 
67 protected:
70 
71  // Usual data generation method
73 
76 private:
77  vtkReverseSense(const vtkReverseSense&); // Not implemented.
78  void operator=(const vtkReverseSense&); // Not implemented.
79 };
80 
81 #endif
Store vtkAlgorithm input/output information.
virtual int RequestData(vtkInformation *request, vtkInformationVector **inputVector, vtkInformationVector *outputVector)
#define VTKFILTERSCORE_EXPORT
static vtkPolyDataAlgorithm * New()
void PrintSelf(ostream &os, vtkIndent indent)
Superclass for algorithms that produce only polydata as output.
reverse the ordering of polygonal cells and/or vertex normals
a simple class to control print indentation
Definition: vtkIndent.h:38
Store zero or more vtkInformation instances.