summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/shadedtiling.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/shadedtiling.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/shadedtiling.asy12
1 files changed, 12 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/shadedtiling.asy b/Master/texmf-dist/doc/asymptote/examples/shadedtiling.asy
new file mode 100644
index 00000000000..4d3b8ae894b
--- /dev/null
+++ b/Master/texmf-dist/doc/asymptote/examples/shadedtiling.asy
@@ -0,0 +1,12 @@
+size(0,100);
+import patterns;
+
+real d=4mm;
+picture tiling;
+path square=scale(d)*unitsquare;
+axialshade(tiling,square,white,(0,0),black,(d,d));
+fill(tiling,shift(d,d)*square,blue);
+add("shadedtiling",tiling);
+
+filldraw(unitcircle,pattern("shadedtiling"));
+