summaryrefslogtreecommitdiff
path: root/Master/texmf/doc/asymptote/examples/transparency.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf/doc/asymptote/examples/transparency.asy')
-rw-r--r--Master/texmf/doc/asymptote/examples/transparency.asy9
1 files changed, 9 insertions, 0 deletions
diff --git a/Master/texmf/doc/asymptote/examples/transparency.asy b/Master/texmf/doc/asymptote/examples/transparency.asy
new file mode 100644
index 00000000000..02196a02ee9
--- /dev/null
+++ b/Master/texmf/doc/asymptote/examples/transparency.asy
@@ -0,0 +1,9 @@
+size(0,150);
+
+settings.outformat="pdf";
+
+begingroup();
+fill(shift(1.5dir(120))*unitcircle,green+opacity(0.75));
+fill(shift(1.5dir(60))*unitcircle,red+opacity(0.75));
+fill(unitcircle,blue+opacity(0.75));
+endgroup();