VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtkOutlineCornerSource.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkOutlineCornerSource.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 =========================================================================*/
22 #ifndef __vtkOutlineCornerSource_h
23 #define __vtkOutlineCornerSource_h
24 
25 #include "vtkFiltersSourcesModule.h" // For export macro
26 #include "vtkOutlineSource.h"
27 
28 class VTKFILTERSSOURCES_EXPORT vtkOutlineCornerSource : public vtkOutlineSource
29 {
30 public:
32  void PrintSelf(ostream& os, vtkIndent indent);
33 
35  static vtkOutlineCornerSource *New();
36 
38 
40  vtkSetClampMacro(CornerFactor, double, 0.001, 0.5);
41  vtkGetMacro(CornerFactor, double);
43 
44 protected:
47 
48  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *);
49 
50  double CornerFactor;
51 private:
52  vtkOutlineCornerSource(const vtkOutlineCornerSource&); // Not implemented.
53  void operator=(const vtkOutlineCornerSource&); // Not implemented.
54 };
55 
56 #endif
create wireframe outline corners around bounding box
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
static vtkOutlineSource * New()
create wireframe outline around bounding box
void PrintSelf(ostream &os, vtkIndent indent)