summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/epix.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/epix.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/epix.asy14
1 files changed, 0 insertions, 14 deletions
diff --git a/Master/texmf/doc/asymptote/examples/epix.asy b/Master/texmf/doc/asymptote/examples/epix.asy
deleted file mode 100644
index b833289bd80..00000000000
--- a/Master/texmf/doc/asymptote/examples/epix.asy
+++ /dev/null
@@ -1,14 +0,0 @@
-import graph3;
-
-size(200,200,IgnoreAspect);
-
-currentprojection=perspective(4,2,3);
-
-real f(pair z) {return z.y^3/2-3z.x^2*z.y;}
-
-draw(surface(f,(-1,-1),(1,1),nx=10,Spline),green,render(merge=true));
-draw(Label("$y$",1),(0,0,0)--(0,2,0),red,Arrow3);
-
-draw(Label("$x$",1),(0,0,0)--(2,0,0),red,Arrow3);
-draw(Label("$z$",1),(0,0,0)--(0,0,2.5),red,Arrow3);
-label("$z=\frac{1}{2}y^3-3x^2y$",(1,1,1),NE);