summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/icon.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/icon.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/icon.asy4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/icon.asy b/Master/texmf-dist/doc/asymptote/examples/icon.asy
index 1701fe0f32e..0170f2605ce 100644
--- a/Master/texmf-dist/doc/asymptote/examples/icon.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/icon.asy
@@ -4,7 +4,7 @@ size(30,30,IgnoreAspect);
real f(real t) {return t < 0 ? -1/t : -0.5/t;}
-picture logo(pair s=0, pen q)
+picture logo(pair s=0, pen q)
{
picture pic;
pen p=linewidth(3)+q;
@@ -17,6 +17,6 @@ picture logo(pair s=0, pen q)
draw(pic,z+c+eps--z,p);
yaxis(pic,p);
return shift(s)*pic;
-}
+}
add(logo(red));