summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/Coons.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/Coons.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/Coons.asy6
1 files changed, 6 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/Coons.asy b/Master/texmf-dist/doc/asymptote/examples/Coons.asy
new file mode 100644
index 00000000000..9f59d152575
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/Coons.asy
@@ -0,0 +1,6 @@
+size(200);
+
+pen[] p={red,green,blue,magenta};
+path g=(0,0){dir(45)}..(1,0)..(1,1)..(0,1)..cycle;
+tensorshade(g,p);
+dot(g);