This file is indexed.

/usr/share/doc/python-gts/examples/test/die.py is in python-gts 0.3.1-6.

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

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
#! /usr/bin/env python

"""die.py - plots a die

  Copyright (C) 2009 Thomas J. Duck
  All rights reserved.

  Thomas J. Duck <tom.duck@dal.ca>
  Department of Physics and Atmospheric Science,
  Dalhousie University, Halifax, Nova Scotia, Canada, B3H 3J5

NOTICE

  This library is free software; you can redistribute it and/or
  modify it under the terms of the GNU Library General Public
  License as published by the Free Software Foundation; either
  version 2 of the License, or (at your option) any later version.

  This library is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  Library General Public License for more details.

  You should have received a copy of the GNU Library General Public
  License along with this library; if not, write to the
  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  Boston, MA 02111-1307, USA.
"""

import gts
import mayavi.mlab as mlab
import sys

s1 = gts.cube()

def add_dot(s1,x,y,z):

    s2 = gts.sphere(2)
    s2.scale(0.2,0.2,0.2)
    s2.translate(x,y,z)

    return s1.difference(s2)

## 1
#s1 = add_dot(s1,0,0,1)
#
## 2
#s1 = add_dot(s1,1,0,0.5)
#s1 = add_dot(s1,1,0,-0.5)
#
## 3
#s1 = add_dot(s1,0,1,0.65)
#s1 = add_dot(s1,0,1,-0.65)
#s1 = add_dot(s1,0,1,0)

s1.tessellate()

# 6
#s1 = add_dot(s1,-0.5,-1,0.65)
#s1 = add_dot(s1,-0.5,-1.0,0.0)
#s1 = add_dot(s1,-0.5,-1.0,-0.65)
#
#s1 = add_dot(s1,0.5,-1,0.65)
#s1 = add_dot(s1,0.5,-1,0)
#s1 = add_dot(s1,0.5,-1,-0.65)

# Plot the surfaces
x,y,z,t = gts.get_coords_and_face_indices(s1,True)

mlab.triangular_mesh(x,y,z,t,color=(0.9,0.9,0.9),representation='fancymesh')

sys.stdout.flush()

#x,y,z,t = gts.get_coords_and_face_indices(dot,True)
#mlab.triangular_mesh(x,y,z,t,color=(0,0,0))


mlab.show()