VTK
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 =========================================================================*/
26 #ifndef vtkOutlineCornerSource_h
27 #define vtkOutlineCornerSource_h
28 
29 #include "vtkFiltersSourcesModule.h" // For export macro
30 #include "vtkOutlineSource.h"
31 
32 class VTKFILTERSSOURCES_EXPORT vtkOutlineCornerSource : public vtkOutlineSource
33 {
34 public:
36  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
37 
41  static vtkOutlineCornerSource *New();
42 
44 
48  vtkSetClampMacro(CornerFactor, double, 0.001, 0.5);
49  vtkGetMacro(CornerFactor, double);
51 
53 
58  vtkSetMacro(OutputPointsPrecision,int);
59  vtkGetMacro(OutputPointsPrecision,int);
61 
62 protected:
64  ~vtkOutlineCornerSource() VTK_OVERRIDE {}
65 
67 
68  double CornerFactor;
69  int OutputPointsPrecision;
70 private:
71  vtkOutlineCornerSource(const vtkOutlineCornerSource&) VTK_DELETE_FUNCTION;
72  void operator=(const vtkOutlineCornerSource&) VTK_DELETE_FUNCTION;
73 };
74 
75 #endif
create wireframe outline corners around bounding box
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
Store vtkAlgorithm input/output information.
static vtkOutlineSource * New()
a simple class to control print indentation
Definition: vtkIndent.h:39
create wireframe outline around bounding box
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
Store zero or more vtkInformation instances.