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