VTK  9.1.0
vtkGraphGeodesicPath.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkGraphGeodesicPath.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 vtkGraphGeodesicPath_h
25#define vtkGraphGeodesicPath_h
26
27#include "vtkFiltersModelingModule.h" // For export macro
28#include "vtkGeodesicPath.h"
29
30class vtkIdList;
31
32class VTKFILTERSMODELING_EXPORT vtkGraphGeodesicPath : public vtkGeodesicPath
33{
34public:
36
40 void PrintSelf(ostream& os, vtkIndent indent) override;
42
44
47 vtkGetMacro(StartVertex, vtkIdType);
48 vtkSetMacro(StartVertex, vtkIdType);
50
52
55 vtkGetMacro(EndVertex, vtkIdType);
56 vtkSetMacro(EndVertex, vtkIdType);
58
59protected:
62
65
66private:
68 void operator=(const vtkGraphGeodesicPath&) = delete;
69};
70
71#endif
Abstract base for classes that generate a geodesic path.
Abstract base for classes that generate a geodesic path on a graph (mesh).
~vtkGraphGeodesicPath() override
void PrintSelf(ostream &os, vtkIndent indent) override
Standard methods for printing and determining type information.
list of point or cell ids
Definition: vtkIdList.h:140
a simple class to control print indentation
Definition: vtkIndent.h:113
int vtkIdType
Definition: vtkType.h:332