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

Show generalities/fig1330.asy on Github.
Generated with Asymptote 3.00-0.
Categories : Examples 2D | Generalities
Tags : #Basis | #Path
size(0,0); pair A=0, B=(3cm,5cm), C=(6cm,0); pair ctrl_rgt_A, ctrl_lft_B, ctrl_rgt_B, ctrl_lft_C; ctrl_rgt_A=A+2cm*NE; ctrl_lft_B=B+5cm*SW; ctrl_rgt_B=B+2cm*SE; ctrl_lft_C=C+5cm*NW; draw(A..B..C); draw(A.. controls ctrl_rgt_A and ctrl_lft_B ..B.. controls ctrl_rgt_B and ctrl_lft_C ..C,1mm+grey); dot(A--B--C,linewidth(6bp)); draw((A--ctrl_rgt_A),Arrow, p=grey); draw((B--ctrl_rgt_B),Arrow, p=grey); draw((B--ctrl_lft_B),Arrow, p=grey); draw((C--ctrl_lft_C),Arrow, p=grey);