; Draws a cubic Bezier curve between the vertices of an n-sided ; polygon. ; nell bezier8.nll START 3 | nellsvg 2.5 2.25 in 0.02 1 > bezier8.svg n = 7; a = 2*pi/n; l = 1; lc1 = 2; ac1 = pi/6; lc2 = -2; ac2 = -pi/6; T1 : B(l,lc1,ac1,lc2,ac2) T(a); START : P(0.75,0) S(T1,n);