VTK
vtkOutlineFilter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkOutlineFilter.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 =========================================================================*/
29 #ifndef __vtkOutlineFilter_h
30 #define __vtkOutlineFilter_h
31 
32 #include "vtkPolyDataAlgorithm.h"
33 
34 class vtkOutlineSource;
35 
37 {
38 public:
39  static vtkOutlineFilter *New();
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
45  vtkSetMacro(GenerateFaces, int);
46  vtkBooleanMacro(GenerateFaces, int);
47  vtkGetMacro(GenerateFaces, int);
49 
50 protected:
53 
58 
59 private:
60  vtkOutlineFilter(const vtkOutlineFilter&); // Not implemented.
61  void operator=(const vtkOutlineFilter&); // Not implemented.
62 };
63 
64 #endif