summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/latticeshading.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/latticeshading.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/latticeshading.asy7
1 files changed, 7 insertions, 0 deletions
diff --git a/Master/texmf/doc/asymptote/examples/latticeshading.asy b/Master/texmf/doc/asymptote/examples/latticeshading.asy
new file mode 100644
index 00000000000..c6689fa72d5
--- /dev/null
+++ b/Master/texmf/doc/asymptote/examples/latticeshading.asy
@@ -0,0 +1,7 @@
+size(200);
+
+pen[][] p={{white,grey,black},
+ {red,green,blue},
+ {cyan,magenta,yellow}};
+
+latticeshade(unitsquare,p);