This file is indexed.

/usr/lib/open-axiom/input/drawx.input is in open-axiom-test 1.4.1+svn~2626-2ubuntu2.

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
--Copyright The Numerical Algorithms Group Limited 1991.

)clear all

--Plotting Two Dimensional Functions of One Variable
draw(sin(tan(x))-tan(sin(x)),x=0..6)
draw(sin(tan(x))-tan(sin(x)),x=0..6,unit == [1.0,0.5],toScale == true)

--Plotting Two Dimensional Parametric Plane Curves
draw(curve(9*sin(3*t/4),8*sin(t)),t=-4*%pi..4*%pi)
draw(curve(9*sin(3*t/4),8*sin(t)),t=-4*%pi..4*%pi,coordinates == polar)

--Plotting Three Dimensional Parametric Space Curves
draw(curve(cos(t),sin(t),t),t=0..6)
draw(curve(cos(t),sin(t),t),t=0..6,tubeRadius == .35,tubePoints == 8)

--Plotting Three Dimensional Functions of Two Variables
draw(cos(x*y),x = -3..3, y = -3..3)
l(x:DoubleFloat,y:DoubleFloat):DoubleFloat == cos(x*y)
colorFxn(x:DoubleFloat,y:DoubleFloat):DoubleFloat == 1/(x**2 + y**2 + 1)
draw(cos(x*y),x = -3..3, y = -3..3, colorFunction == colorFxn)

--Plotting Three Dimensional Parametric Surfaces
draw(surface(u*cos(v),u*sin(v),v*cos(u)),u=-4..4,v=0..2*%pi)
l(x:DoubleFloat,y:DoubleFloat):DoubleFloat == cos(x*y)
colorFxn(x:DoubleFloat,y:DoubleFloat):DoubleFloat == 1/(x**2 + y**2 + 1)
draw(cos(x*y),x = -3..3, y = -3..3, colorFunction == colorFxn)