00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00032 #ifndef __vtkContourLineInterpolator_h
00033 #define __vtkContourLineInterpolator_h
00034
00035 #include "vtkObject.h"
00036
00037 class vtkRenderer;
00038 class vtkContourRepresentation;
00039 class vtkIntArray;
00040
00041 class VTK_WIDGETS_EXPORT vtkContourLineInterpolator : public vtkObject
00042 {
00043 public:
00045
00046 vtkTypeMacro(vtkContourLineInterpolator,vtkObject);
00047 void PrintSelf(ostream& os, vtkIndent indent);
00049
00051
00055 virtual int InterpolateLine( vtkRenderer *ren,
00056 vtkContourRepresentation *rep,
00057 int idx1, int idx2 ) = 0;
00059
00061
00066 virtual int UpdateNode( vtkRenderer *,
00067 vtkContourRepresentation *,
00068 double * vtkNotUsed(node), int vtkNotUsed(idx) );
00070
00072
00082 virtual void GetSpan( int nodeIndex, vtkIntArray *nodeIndices,
00083 vtkContourRepresentation *rep );
00085
00086 protected:
00087 vtkContourLineInterpolator();
00088 ~vtkContourLineInterpolator();
00089
00090 private:
00091 vtkContourLineInterpolator(const vtkContourLineInterpolator&);
00092 void operator=(const vtkContourLineInterpolator&);
00093 };
00094
00095 #endif