This file is indexed.

/usr/include/vtk-7.1/vtkGraphToPolyData.h is in libvtk7-dev 7.1.1+dfsg1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*=========================================================================

  Program:   Visualization Toolkit
  Module:    vtkGraphToPolyData.h

  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
  All rights reserved.
  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.

     This software is distributed WITHOUT ANY WARRANTY; without even
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
     PURPOSE.  See the above copyright notice for more information.

=========================================================================*/
/*-------------------------------------------------------------------------
  Copyright 2008 Sandia Corporation.
  Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
  the U.S. Government retains certain rights in this software.
-------------------------------------------------------------------------*/
/**
 * @class   vtkGraphToPolyData
 * @brief   convert a vtkGraph to vtkPolyData
 *
 *
 * Converts a vtkGraph to a vtkPolyData.  This assumes that the points
 * of the graph have already been filled (perhaps by vtkGraphLayout),
 * and coverts all the edge of the graph into lines in the polydata.
 * The vertex data is passed along to the point data, and the edge data
 * is passed along to the cell data.
 *
 * Only the owned graph edges (i.e. edges with ghost level 0) are copied
 * into the vtkPolyData.
*/

#ifndef vtkGraphToPolyData_h
#define vtkGraphToPolyData_h

#include "vtkFiltersSourcesModule.h" // For export macro
#include "vtkPolyDataAlgorithm.h"

class VTKFILTERSSOURCES_EXPORT vtkGraphToPolyData : public vtkPolyDataAlgorithm
{
public:
  static vtkGraphToPolyData *New();
  vtkTypeMacro(vtkGraphToPolyData,vtkPolyDataAlgorithm);
  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;

  //@{
  /**
   * Create a second output containing points and orientation vectors
   * for drawing arrows or other glyphs on edges.  This output should be
   * set as the first input to vtkGlyph3D to place glyphs on the edges.
   * vtkGlyphSource2D's VTK_EDGEARROW_GLYPH provides a good glyph for
   * drawing arrows.
   * Default value is off.
   */
  vtkSetMacro(EdgeGlyphOutput, bool);
  vtkGetMacro(EdgeGlyphOutput, bool);
  vtkBooleanMacro(EdgeGlyphOutput, bool);
  //@}

  //@{
  /**
   * The position of the glyph point along the edge.
   * 0 puts a glyph point at the source of each edge.
   * 1 puts a glyph point at the target of each edge.
   * An intermediate value will place the glyph point between the source and target.
   * The default value is 1.
   */
  vtkSetMacro(EdgeGlyphPosition, double);
  vtkGetMacro(EdgeGlyphPosition, double);
  //@}

protected:
  vtkGraphToPolyData();
  ~vtkGraphToPolyData() VTK_OVERRIDE {}

  bool EdgeGlyphOutput;
  double EdgeGlyphPosition;
  bool ArcEdges;
  vtkIdType NumberOfArcSubdivisions;

  /**
   * Convert the vtkGraph into vtkPolyData.
   */
  int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) VTK_OVERRIDE;

  /**
   * Set the input type of the algorithm to vtkGraph.
   */
  int FillInputPortInformation(int port, vtkInformation* info) VTK_OVERRIDE;

private:
  vtkGraphToPolyData(const vtkGraphToPolyData&) VTK_DELETE_FUNCTION;
  void operator=(const vtkGraphToPolyData&) VTK_DELETE_FUNCTION;
};

#endif