function [] = vorPlot2d(N); % vor_plot(N) --- Plots voronoi diagrams, from a matrix of points % in the standard configuration (N). Plot options are also manipulated. p = voronoi(N(:,2),N(:,3)); axis([-60,60,-60,60]) set(p,'markersize',4,'markeredgecolor','k','markerfacecolor','k', 'linewidth', 2) set(gca,'color','w','xcolor','k','ycolor','k','tickdir','out','fontweight','bold'); set(gca,'fontsize',12); set(gcf,'color','none'); for h = p set(h,'color','k','markersize',8); end