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
36
37
38
39
40
41
42
43
44
45
46
|
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input knot2.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
<<*>>=
)cl all
-- see how long this all takes
)set messages time on
-- this is the color function, nothing elaborate for now
f(x:SF):SF == x
--------------------------------------------------------------
-- Creation of the knot!!! --
-- only p/q is really used, but p and q correspond to --
-- the factors in the notes deriving these knotty things --
-- see the notes for detail...too involved to explain here --
--------------------------------------------------------------
[p,q] := [3,5]
PQ := p/q
l := lcm(p, q) quo p
maxRange := (odd? l => l * %pi::SF; 2 * l * %pi::SF)
theRange := 0..maxRange
-- create the knot
knot := tubePlot(sin t * cos(PQ*t),cos t * cos(PQ*t),cos t * sin(PQ*t),
f, theRange, 0.1::SF, 6, "open" )
-- make a viewport out of it
makeViewport3D(knot, concat ["knot", string p,string q])$VIEW3D
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}
|