summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/asymptote/plain_filldraw.asy
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2014-04-21 23:02:35 +0000
committerKarl Berry <karl@freefriends.org>2014-04-21 23:02:35 +0000
commitfab654a7fafba60c3d1e32040ad16d19b5dfd550 (patch)
tree699549d43c84af6b176173d794f17c7cc7164bc6 /Master/texmf-dist/asymptote/plain_filldraw.asy
parentea58320b10f549a61236be100fc97925aea6b489 (diff)
asymptote 2.25 for TL14
git-svn-id: svn://tug.org/texlive/trunk@33606 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/asymptote/plain_filldraw.asy')
-rw-r--r--Master/texmf-dist/asymptote/plain_filldraw.asy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/asymptote/plain_filldraw.asy b/Master/texmf-dist/asymptote/plain_filldraw.asy
index a5eea35ef25..026f2cee6c5 100644
--- a/Master/texmf-dist/asymptote/plain_filldraw.asy
+++ b/Master/texmf-dist/asymptote/plain_filldraw.asy
@@ -18,7 +18,7 @@ void makedraw(frame f, path g, pen p, int depth=mantissaBits)
for(int i=0; i < N; ++i) {
pair n1=point(n,i+1);
pair dir=unit(n1-n0);
- real t=dirtime(g,-dir);
+ real t=dirtime(g,-dir)-epsilon;
if(straight(g,(int) t)) t=ceil(t);
if(t > epsilon && t < stop) {
makedraw(f,subpath(g,0,t),p,depth);