VTK
dox/Filters/Modeling/vtkGeodesicPath.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkGeodesicPath.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00022 #ifndef __vtkGeodesicPath_h
00023 #define __vtkGeodesicPath_h
00024 
00025 #include "vtkFiltersModelingModule.h" // For export macro
00026 #include "vtkPolyDataAlgorithm.h"
00027 
00028 class vtkPolyData;
00029 
00030 class VTKFILTERSMODELING_EXPORT vtkGeodesicPath : public vtkPolyDataAlgorithm
00031 {
00032 public:
00033 
00035 
00036   vtkTypeMacro(vtkGeodesicPath,vtkPolyDataAlgorithm);
00037   void PrintSelf(ostream& os, vtkIndent indent);
00039 
00040   virtual double GetGeodesicLength() = 0;
00041 
00042 protected:
00043   vtkGeodesicPath();
00044   ~vtkGeodesicPath();
00045 
00046   virtual int FillInputPortInformation(int port, vtkInformation *info);
00047 
00048 private:
00049   vtkGeodesicPath(const vtkGeodesicPath&);  // Not implemented.
00050   void operator=(const vtkGeodesicPath&);  // Not implemented.
00051 };
00052 
00053 #endif
00054