Figure Asymptote generalities -- 165
🔗This picture comes from the Asymptote gallery of topic generalities

Show generalities/fig1660.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Examples 2D | Generalities
Tags : #Basis | #Path | #Length
size(10cm,0); path apath=(0,0)..(1,1)..(2,.5){dir(0)}; real l=length(apath); real step=l/15; for(real i=0; i<l-step; i+=step) draw(subpath(apath,i,i+step),4bp+(i/l*red+(l-i)/l*blue),PenMargins); draw(apath);