cFigure; % Open figure for plotting
%Defining triangulated geodesic domes with different densities
r=1; %sphere radius
n=0:1:3; %Refinements
pColor=gjet(numel(n));
for q=1:1:numel(n)
[F,V,~]=geoSphere(n(q),r);
subplot(2,2,q);hold on;
title([num2str(n(q)), 'refinement iterations'], 'FontSize', fontSize);
gptach(F,V,pColors(q,:));
%patchNormPlot(F,V);
camlight headlight;
axisGeom(gca, fontSize);
end
drawnow;