VTK
vtkSmoothErrorMetric.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSmoothErrorMetric.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 =========================================================================*/
33 #ifndef vtkSmoothErrorMetric_h
34 #define vtkSmoothErrorMetric_h
35 
36 #include "vtkCommonDataModelModule.h" // For export macro
38 
39 class vtkGenericDataSet;
40 
42 {
43 public:
46  static vtkSmoothErrorMetric *New();
47 
49 
51  void PrintSelf(ostream& os, vtkIndent indent);
53 
56  double GetAngleTolerance();
57 
62  void SetAngleTolerance(double value);
63 
65 
78  int RequiresEdgeSubdivision(double *leftPoint, double *midPoint,
79  double *rightPoint, double alpha);
81 
83 
92  double GetError(double *leftPoint, double *midPoint, double *rightPoint,
93  double alpha);
95 
96 protected:
98  virtual ~vtkSmoothErrorMetric();
99 
101  double CosTolerance;
102 
103 private:
104  vtkSmoothErrorMetric(const vtkSmoothErrorMetric&); // Not implemented.
105  void operator=(const vtkSmoothErrorMetric&); // Not implemented.
106 };
107 
108 #endif
virtual int RequiresEdgeSubdivision(double *leftPoint, double *midPoint, double *rightPoint, double alpha)=0
a simple class to control print indentation
Definition: vtkIndent.h:38
Objects that compute geometry-based error during cell tessellation according to some max angle...
Objects that compute error during cell tessellation.
virtual double GetError(double *leftPoint, double *midPoint, double *rightPoint, double alpha)=0
defines dataset interface
static vtkObject * New()
void PrintSelf(ostream &os, vtkIndent indent)
#define VTKCOMMONDATAMODEL_EXPORT