75430cbInitial commit: chunkie examples for numblJeremy Magland 1% Example 1: Chunk up a circle and plot geometry + normals.
3mip load --install magland/magland/chunkie;
5tic;
7rad = 2; ctr = [1.0;-0.5];
8circfun = @(t) ctr + rad*[cos(t(:).');sin(t(:).')];
10chnkr1 = chunkerfunc(circfun);
12toc;
14figure(1)
15clf
16plot(chnkr1,'b-x')
17hold on
18quiver(chnkr1,'r')
19axis equal tight