VTK
vtkPolyDataContourLineInterpolator.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPolyDataContourLineInterpolator.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 =========================================================================*/
24 #ifndef __vtkPolyDataContourLineInterpolator_h
25 #define __vtkPolyDataContourLineInterpolator_h
26 
28 
29 class vtkPolyData;
31 
34 {
35 public:
37 
40  void PrintSelf(ostream& os, vtkIndent indent);
42 
44 
48  virtual int InterpolateLine( vtkRenderer *ren,
50  int idx1, int idx2 ) = 0;
52 
54 
59  virtual int UpdateNode( vtkRenderer *,
61  double * vtkNotUsed(node), int vtkNotUsed(idx) ) = 0;
63 
65 
67  vtkGetObjectMacro( Polys, vtkPolyDataCollection );
69 
70 protected:
73 
75 
76 private:
78  const vtkPolyDataContourLineInterpolator&); //Not implemented
79  void operator=(const vtkPolyDataContourLineInterpolator&); //Not implemented
80 };
81 
82 #endif