% Example 1: Chunk up a circle and plot geometry + normals. mip load --install magland/magland/chunkie; tic; rad = 2; ctr = [1.0;-0.5]; circfun = @(t) ctr + rad*[cos(t(:).');sin(t(:).')]; chnkr1 = chunkerfunc(circfun); toc; figure(1) clf plot(chnkr1,'b-x') hold on quiver(chnkr1,'r') axis equal tight