aboutsummaryrefslogtreecommitdiff
path: root/src/input/explot3d.input.pamphlet
blob: 7f27d824784ebd74b1b0120a955fc94a6a6558cd (plain)
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
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input explot3d.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
<<*>>=

-- 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)
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}