summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/asymptote/examples/pipes.asy
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/asymptote/examples/pipes.asy')
-rw-r--r--Master/texmf-dist/doc/asymptote/examples/pipes.asy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/texmf-dist/doc/asymptote/examples/pipes.asy b/Master/texmf-dist/doc/asymptote/examples/pipes.asy
index 6b2025f6b35..383fda80fd5 100644
--- a/Master/texmf-dist/doc/asymptote/examples/pipes.asy
+++ b/Master/texmf-dist/doc/asymptote/examples/pipes.asy
@@ -90,7 +90,7 @@ void DrawLink(transform3 TBase, transform3 TEnd, pen objStyle,string s)
// draw two cylinders
draw(TBase*objSurface,objStyle,render);
- draw(TEnd*shift((0,0,-h))*objSurface,objStyle,render);
+ draw(TEnd*shift((0,0,-h+1e-5))*objSurface,objStyle,render);
// draw the link between two cylinders
triple pStart=TBase*(0.5*h*Z);