rhombicDodecahedron
Below is a demonstration of the features of the rhombicDodecahedron function
Contents
closeFall;
Plot settings
figColor='w'; figColorDef='white'; fontSize=20; faceAlpha1=0.8; edgeColor=0.6*ones(1,3); lineWidth1=2; markerSize=25;
Creating a patch model of a rhombic dodecahedron
r=sqrt(2)/2; %Radii, the chosen level results in X,Y width of 1
[F,V]=rhombicDodecahedron(r);
Plotting results
hf1=figuremax(figColor,figColorDef); title('A rhombic dodecahedron','FontSize',fontSize); xlabel('X','FontSize',fontSize); ylabel('Y','FontSize',fontSize); zlabel('Z','FontSize',fontSize); hold on; hp=patch('Faces',F,'Vertices',V,'FaceColor','g','FaceAlpha',faceAlpha1,'EdgeColor',edgeColor,'lineWidth',lineWidth1,'Marker','o','MarkerSize',markerSize,'MarkerFaceColor','k','MarkerEdgeColor','none'); colormap(hsv); set(gca,'FontSize',fontSize); view(3); axis tight; axis equal; axis vis3d; grid on; view(-10,25); camlight('headlight'); lighting flat;

GIBBON
Kevin M. Moerman (kevinmoerman@hotmail.com)