VTK
vtkAttributesErrorMetric.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkAttributesErrorMetric.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 =========================================================================*/
30 #ifndef vtkAttributesErrorMetric_h
31 #define vtkAttributesErrorMetric_h
32 
33 #include "vtkCommonDataModelModule.h" // For export macro
35 
37 class vtkGenericDataSet;
38 
40 {
41 public:
44  static vtkAttributesErrorMetric *New();
45 
47 
49  void PrintSelf(ostream& os, vtkIndent indent);
51 
53 
58  vtkGetMacro(AbsoluteAttributeTolerance, double);
60 
68  void SetAbsoluteAttributeTolerance(double value);
69 
71 
76  vtkGetMacro(AttributeTolerance, double);
78 
82  void SetAttributeTolerance(double value);
83 
85 
99  int RequiresEdgeSubdivision(double *leftPoint, double *midPoint, double *rightPoint,
100  double alpha);
102 
104 
113  double GetError(double *leftPoint, double *midPoint,
114  double *rightPoint, double alpha);
116 
117 protected:
119  virtual ~vtkAttributesErrorMetric();
120 
123  void ComputeSquareAbsoluteAttributeTolerance();
124 
126 
127  double SquareAbsoluteAttributeTolerance; // cached value computed from
128  // AttributeTolerance and active attribute/component
129 
132 
134 
135  double Range; // cached value computed from active attribute/component
136 
138 
139 private:
140  vtkAttributesErrorMetric(const vtkAttributesErrorMetric&); // Not implemented.
141  void operator=(const vtkAttributesErrorMetric&); // Not implemented.
142 };
143 
144 #endif
145 
vtkGenericAttributeCollection * AttributeCollection
record modification and/or execution time
Definition: vtkTimeStamp.h:34
virtual int RequiresEdgeSubdivision(double *leftPoint, double *midPoint, double *rightPoint, double alpha)=0
Objects that compute attribute-based error during cell tessellation.
a simple class to control print indentation
Definition: vtkIndent.h:38
Objects that compute error during cell tessellation.
virtual double GetError(double *leftPoint, double *midPoint, double *rightPoint, double alpha)=0
vtkTimeStamp SquareAbsoluteAttributeToleranceComputeTime
defines dataset interface
static vtkObject * New()
void PrintSelf(ostream &os, vtkIndent indent)
#define VTKCOMMONDATAMODEL_EXPORT