close all;
load -ascii 'smoothpath.txt';
x0 = smoothpath(:,2);
y0 = smoothpath(:,3);
x = smoothpath(:,4);
y = smoothpath(:,5);
figure(3); plot(x0,y0,'k-'); hold on; plot(x,y,'b-'); axis tight;
hold off;
