summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/knots.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/knots.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/knots.asy27
1 files changed, 0 insertions, 27 deletions
diff --git a/Master/texmf/doc/asymptote/examples/knots.asy b/Master/texmf/doc/asymptote/examples/knots.asy
deleted file mode 100644
index 48881459d05..00000000000
--- a/Master/texmf/doc/asymptote/examples/knots.asy
+++ /dev/null
@@ -1,27 +0,0 @@
-import syzygy;
-
-Braid initial;
-initial.n = 4;
-initial.add(bp,1);
-initial.add(bp,0);
-initial.add(bp,2);
-initial.add(bp,1);
-initial.add(phi,2);
-initial.add(phi,0);
-
-Syzygy pp;
-pp.lsym="\Phi\Phi"; pp.codename="PhiAroundPhi";
-
-pp.number=true;
-pp.initial=initial;
-pp.apply(r4b,2,1);
-pp.apply(r4b,0,0);
-pp.apply(r4a,1,0);
-pp.swap(0,1);
-pp.apply(-r4b,1,0);
-pp.apply(-r4a,0,1);
-pp.apply(-r4a,2,0);
-pp.swap(4,5);
-
-pp.draw();
-