This file is indexed.

/usr/share/k3d/scripts/MeshSourceScript/cones.py is in k3d-data 0.8.0.3-3build1.

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
#python

from math import radians

import k3d
k3d.check_node_environment(context, "MeshSourceScript")

# Construct a cone mesh primitive ...
cone = k3d.cone.create(context.output)
color = cone.parameter_attributes().create("Cs", "k3d::color")

# Add two cones ...
cone.matrices().append(k3d.translate3(k3d.vector3(-5, 0, 0)))
cone.materials().append(None)
cone.heights().append(5)
cone.radii().append(4)
cone.sweep_angles().append(radians(360))
cone.selections().append(0)
color.append(k3d.color(1, 0, 0))
color.append(k3d.color(1, 0, 0))
color.append(k3d.color(1, 1, 0))
color.append(k3d.color(1, 1, 0))

cone.matrices().append(k3d.translate3(k3d.vector3(5, 0, 0)))
cone.materials().append(None)
cone.heights().append(5)
cone.radii().append(4)
cone.sweep_angles().append(radians(360))
cone.selections().append(0)
color.append(k3d.color(1, 0, 0))
color.append(k3d.color(1, 0, 0))
color.append(k3d.color(0, 0, 1))
color.append(k3d.color(0, 0, 1))