diff options
Diffstat (limited to 'src/input/explot3d.input.pamphlet')
-rw-r--r-- | src/input/explot3d.input.pamphlet | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/input/explot3d.input.pamphlet b/src/input/explot3d.input.pamphlet new file mode 100644 index 00000000..7f27d824 --- /dev/null +++ b/src/input/explot3d.input.pamphlet @@ -0,0 +1,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} |