summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/metapost/featpost/example/ultraeye.mp
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/metapost/featpost/example/ultraeye.mp')
-rw-r--r--Master/texmf-dist/doc/metapost/featpost/example/ultraeye.mp16
1 files changed, 16 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/metapost/featpost/example/ultraeye.mp b/Master/texmf-dist/doc/metapost/featpost/example/ultraeye.mp
new file mode 100644
index 00000000000..a93847c7736
--- /dev/null
+++ b/Master/texmf-dist/doc/metapost/featpost/example/ultraeye.mp
@@ -0,0 +1,16 @@
+% ultraeye.mp
+% L. Nobre G.
+% 2007
+
+prologues := 1;
+beginfig(1);
+ LaTeX_unitlength := 14.22636pt; % from the emp LaTeX package
+ w := 15*LaTeX_unitlength;
+ h := 10*LaTeX_unitlength;
+ for i=h step -h/20 until h/20:
+ fill fullcircle scaled i xscaled (w/h) withcolor blue;
+ fill fullcircle scaled i withcolor red;
+ endfor;
+endfig;
+end.
+endinput;