This file is indexed.

/usr/lib/open-axiom/input/explot3d.input is in open-axiom-test 1.5.0~svn3056+ds-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
-- Input for page ExPlot3DParametricCurve
)clear all

draw(curve(cos(t),sin(t),t),t=0..6)
draw(curve(t,t**2,t**3),t=-3..3)

-- Input for page ExPlot3DParametricSurface
)clear all

draw(surface(5*sin(u)*cos(v),4*sin(u)*sin(v),3*cos(u)),u=0..%pi,v=0..2*%pi)
draw(surface(u*cos(v),u*sin(v),u),u=0..4,v=0..2*%pi)

-- Input for page ExPlot3DFunctions
)clear all

draw(cos(x*y),x = -3..3,y = -3..3)