summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/tile.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/tile.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/tile.asy13
1 files changed, 0 insertions, 13 deletions
diff --git a/Master/texmf/doc/asymptote/examples/tile.asy b/Master/texmf/doc/asymptote/examples/tile.asy
deleted file mode 100644
index fe9cbc523c7..00000000000
--- a/Master/texmf/doc/asymptote/examples/tile.asy
+++ /dev/null
@@ -1,13 +0,0 @@
-size(0,90);
-import patterns;
-
-add("tile",tile());
-add("filledtilewithmargin",tile(6mm,4mm,red,Fill),(1mm,1mm),(1mm,1mm));
-add("checker",checker());
-add("brick",brick());
-
-real s=2.5;
-filldraw(unitcircle,pattern("tile"));
-filldraw(shift(s,0)*unitcircle,pattern("filledtilewithmargin"));
-filldraw(shift(2s,0)*unitcircle,pattern("checker"));
-filldraw(shift(3s,0)*unitcircle,pattern("brick"));