This file is indexed.

/usr/share/netgen/libsrc/meshing/meshfunc.hpp is in netgen-headers 4.9.13.dfsg-8build2.

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
#ifndef FILE_MESHFUNC
#define FILE_MESHFUNC

/**************************************************************************/
/* File:   meshfunc.hh                                                    */
/* Author: Johannes Gerstmayr                                             */
/* Date:   26. Jan. 98                                                    */
/**************************************************************************/


/*
  Functions for mesh-generations strategies
 */

class Mesh;
// class CSGeometry;

/// Build tet-mesh
MESHING3_RESULT MeshVolume(MeshingParameters & mp, Mesh& mesh3d);

/// Build mixed-element mesh
MESHING3_RESULT MeshMixedVolume(MeshingParameters & mp, Mesh& mesh3d);

/// Optimize tet-mesh
MESHING3_RESULT OptimizeVolume(MeshingParameters & mp, Mesh& mesh3d);
//			       const CSGeometry * geometry = NULL);

void RemoveIllegalElements (Mesh & mesh3d);


enum MESHING_STEP { 
  MESHCONST_ANALYSE = 1,
  MESHCONST_MESHEDGES = 2,
  MESHCONST_MESHSURFACE = 3,
  MESHCONST_OPTSURFACE = 4,
  MESHCONST_MESHVOLUME = 5,
  MESHCONST_OPTVOLUME = 6
};


#endif