This file is indexed.

/usr/include/paraview/vtkResliceCursorPolyDataAlgorithm.h is in paraview-dev 4.0.1-1ubuntu1.

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
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*=========================================================================

  Program:   Visualization Toolkit
  Module:    vtkResliceCursorPolyDataAlgorithm.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.

=========================================================================*/
// .NAME vtkResliceCursorPolyDataAlgorithm - generates a 2D reslice cursor polydata
// .SECTION Description
// vtkResliceCursorPolyDataAlgorithm is a class that generates a 2D
// reslice cursor vtkPolyData, suitable for rendering within a
// vtkResliceCursorActor. The class takes as input the reslice plane
// normal index (an index into the normal plane maintained by the reslice
// cursor object) and generates the polydata represeting the other two
// reslice axes suitable for rendering on a slice through this plane.
// The cursor consists of two intersection axes lines that meet at the
// cursor focus. These lines may have a user defined thickness. They
// need not be orthogonal to each other.
// .SECTION see also
// vtkResliceCursorActor vtkResliceCursor vtkResliceCursorWidget

#ifndef __vtkResliceCursorPolyDataAlgorithm_h
#define __vtkResliceCursorPolyDataAlgorithm_h

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

class vtkCutter;
class vtkResliceCursor;
class vtkPlane;
class vtkBox;
class vtkClipPolyData;
class vtkLinearExtrusionFilter;

class VTKINTERACTIONWIDGETS_EXPORT vtkResliceCursorPolyDataAlgorithm : public vtkPolyDataAlgorithm
{
public:
  vtkTypeMacro(vtkResliceCursorPolyDataAlgorithm,vtkPolyDataAlgorithm);
  void PrintSelf(ostream& os, vtkIndent indent);

  // Description:
  static vtkResliceCursorPolyDataAlgorithm *New();

  // Description:
  // Which of the 3 axes defines the reslice plane normal ?
  vtkSetMacro(ReslicePlaneNormal,int);
  vtkGetMacro(ReslicePlaneNormal,int);

//BTX
  enum {XAxis=0,YAxis,ZAxis};
//ETX

  // Description:
  // Set the planes that correspond to the reslice axes.
  void SetReslicePlaneNormalToXAxis()
    { this->SetReslicePlaneNormal(XAxis); }
  void SetReslicePlaneNormalToYAxis()
    { this->SetReslicePlaneNormal(YAxis); }
  void SetReslicePlaneNormalToZAxis()
    { this->SetReslicePlaneNormal(ZAxis); }

  // Description:
  // Set the Reslice cursor from which to generate the polydata representation
  virtual void SetResliceCursor( vtkResliceCursor * );
  vtkGetObjectMacro( ResliceCursor, vtkResliceCursor );

  // Description:
  // Set/Get the slice bounds, ie the slice of this view on which to display
  // the reslice cursor.
  vtkSetVector6Macro( SliceBounds, double );
  vtkGetVector6Macro( SliceBounds, double );

  // Description:
  // Get either one of the axes that this object produces. Depending on
  // the mode, one renders either the centerline axes or both the
  // centerline axes and the slab
  virtual vtkPolyData * GetCenterlineAxis1();
  virtual vtkPolyData * GetCenterlineAxis2();
  virtual vtkPolyData * GetThickSlabAxis1();
  virtual vtkPolyData * GetThickSlabAxis2();

  // Description:
  // Get the index of the axes and the planes that they represent
  virtual int GetAxis1();
  virtual int GetAxis2();
  virtual int GetPlaneAxis1();
  virtual int GetPlaneAxis2();

  // Description:
  // Convenience method that, given one plane, returns the other plane
  // that this class represents.
  int GetOtherPlaneForAxis( int p );

  // Description:
  // Get the MTime. Check the MTime of the internal ResliceCursor as well, if
  // one has been set
  virtual unsigned long int GetMTime();

protected:
  vtkResliceCursorPolyDataAlgorithm();
  ~vtkResliceCursorPolyDataAlgorithm();

  int RequestData(vtkInformation*,
                  vtkInformationVector**,
                  vtkInformationVector*);

  void GetSlabPolyData( int axis, int planeAxis, vtkPolyData *pd );

  virtual void CutAndClip( vtkPolyData *in, vtkPolyData *out);

  // Build the reslice slab axis
  void BuildResliceSlabAxisTopology();

  int                ReslicePlaneNormal;
  vtkResliceCursor * ResliceCursor;
  vtkCutter        * Cutter;
  vtkPlane         * SlicePlane;
  vtkBox           * Box;
  vtkClipPolyData  * ClipWithBox;
  double             SliceBounds[6];
  bool               Extrude;
  vtkLinearExtrusionFilter *ExtrusionFilter1;
  vtkLinearExtrusionFilter *ExtrusionFilter2;
  vtkPolyData              *ThickAxes[2];

private:
  vtkResliceCursorPolyDataAlgorithm(const vtkResliceCursorPolyDataAlgorithm&);  // Not implemented.
  void operator=(const vtkResliceCursorPolyDataAlgorithm&);  // Not implemented.

};

#endif