This file is indexed.

/usr/src/castle-game-engine-4.1.1/x3d/doc/x3d_nodes/2/Texturing.txt is in castle-game-engine-src 4.1.1-1.

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
X3DTextureCoordinateNode : X3DGeometricPropertyNode { 
}

X3DTextureNode : X3DAppearanceChildNode { 
}

X3DTexture2DNode : X3DTextureNode {
  SFBool []       repeatS           TRUE
  SFBool []       repeatT           TRUE
  SFNode []       textureProperties NULL [TextureProperties]
}

X3DTextureTransformNode : X3DAppearanceChildNode { 
}

ImageTexture : X3DTexture2DNode, X3DUrlObject { 
  MFString [in,out] url               []   [URI]
}

MovieTexture : X3DTexture2DNode, X3DSoundSourceNode, X3DUrlObject { 
  SFString [in,out] description       ""
  SFBool   [in,out] loop              FALSE
  SFTime   [in,out] pauseTime         0     (-Inf,Inf)
  SFTime   [in,out] resumeTime        0     (-Inf,Inf)
  SFFloat  [in,out] speed             1.0   (-Inf,Inf)
  SFTime   [in,out] startTime         0     (-Inf,Inf)
  SFTime   [in,out] stopTime          0     (-Inf,Inf)
  MFString [in,out] url               []    [URI]
  SFTime   [out]    duration_changed
  SFTime   [out]    elapsedTime
  SFBool   [out]    isActive
  SFBool   [out]    isPaused
}

MultiTexture : X3DTextureNode {
  SFFloat  [in,out] alpha    1     [0,1]
  SFColor  [in,out] color    1 1 1 [0,1] 
  MFString [in,out] function []
  MFString [in,out] mode     []
  MFString [in,out] source   []
  MFNode   [in,out] texture  []    [X3DTextureNode]
}

MultiTextureCoordinate : X3DTextureCoordinateNode {
  MFNode [in,out] texCoord NULL [X3DTextureCoordinateNode]
}

MultiTextureTransform : X3DTextureTransformNode { 
  MFNode [in,out] textureTransform NULL [X3DTextureTransformNode]
}

PixelTexture : X3DTexture2DNode { 
  SFImage [in,out] image             0 0 0
}

TextureCoordinate : X3DTextureCoordinateNode { 
  MFVec2f [in,out] point    []   (-Inf,Inf)
}

TextureCoordinateGenerator : X3DTextureCoordinateNode {
  SFString [in,out] mode      "SPHERE" [see Table 18.6]
  MFFloat  [in,out] parameter []       [see Table 18.6]
}

TextureProperties : X3DNode {
  SFFloat     [in,out] anisotropicDegree   1.0       [1,Inf)
  SFColorRGBA [in,out] borderColor         0 0 0 0   [0,1]
  SFInt32     [in,out] borderWidth         0         [0,1]
  SFString    [in,out] boundaryModeS       "REPEAT"  [see Table 18.7]
  SFString    [in,out] boundaryModeT       "REPEAT"  [see Table 18.7]
  SFString    [in,out] boundaryModeR       "REPEAT"  [see Table 18.7]
  SFString    [in,out] magnificationFilter "FASTEST" [see Table 18.8]
  SFString    [in,out] minificationFilter  "FASTEST" [see Table 18.9]
  SFString    [in,out] textureCompression  "FASTEST" [see Table 18.10]
  SFFloat     [in,out] texturePriority     0         [0,1]
  SFBool      []       generateMipMaps     FALSE
}

TextureTransform : X3DTextureTransformNode { 
  SFVec2f [in,out] center      0 0  (-Inf,Inf)
  SFFloat [in,out] rotation    0    (-Inf,Inf)
  SFVec2f [in,out] scale       1 1  (-Inf,Inf)
  SFVec2f [in,out] translation 0 0  (-Inf,Inf)
}