% polygon_main.m A graph of a polygons with i % ncreased number of sides.. % h=figure; set(gcf,'DefaultTextColor','red'); v=get(h); c=[0 100 100 0 0]; d=[0 0 100 100 0]; plot(c,d, 'r-'); title('Various Polygons'); % a0=50; b0=50; radius=40; % Radius of a circle. delta=2; n=4; Polygons(a0,b0,radius,n); %