Figure Asymptote tube -- 004
🔗This picture comes from the Asymptote gallery of topic tube

Show tube/fig0040.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Examples 3D | Tube.asy
Tags : #Tube | #Graph (3D)
import tube; import graph3; size(10cm,0); currentprojection=perspective(4,3,4); triple f(real t){ return t*Z+(cos(2pi*t),sin(2pi*t),0)/sqrt(1+0.5*t^2); } path3 p=graph(f,0,2.7,operator ..); draw(tube(p,scale(0.2)*polygon(5)), purple);