Hey Jeff, what software did you use to add the flaps and such?
And here's the code for the BASIC program that makes the bitmap, so you can create a bitmap of any size you want (within reason!).
Code:
OPTION ANGLE DEGREES
LET bitmapscale = 1
LET width = 800 * bitmapscale
LET ht = 500 * bitmapscale
SET BITMAP SIZE width, ht
LET left = 7 * (7/8)
LET right = 9 * (7/8)
LET bottomtop = 5 * (7/8)
SET WINDOW -left,right,-bottomtop,bottomtop
SET LINE
REM Tsmall is the length of the short side of the hexagon--Thanks hhEb09'1!
LET Tsmall = SQR(3+SQR((25+10*SQR(5))/3))-2
LET Rhex = SQR((Tsmall^2+Tsmall+1)/3)
LET Rpent = (0.1)*(SQR(50+(10*SQR(5))))
LET pentscale = 1
LET hexscale = pentscale * Rhex / Rpent
LET big = 74.4121373379946
LET little = 45.5878626620054
LET pentht = Rpent * COS(36)
LET shexht = Rhex * COS(big/2)
LET thexht = Rhex * COS(little/2)
LET spacer = 2*thexht*COS(30)
LET scl = 1
LET i = 3/16
LET j = -3/8
REM **************************************
REM north pole pentagon
DRAW pentagon WITH ROTATE(18)*SHIFT(i+spacer,j+2*thexht*SIN(30)+2*thexht+shexht+pentht)*SCALE(scl)
REM south pole pentagon
DRAW pentagon WITH ROTATE(-18)*SHIFT(i,j-2*thexht-shexht-pentht)*SCALE(scl)
DRAW pentup WITH SHIFT(i,j)*SCALE(scl)
FOR a = 1 TO 3 STEP 2
DRAW pentdown WITH SHIFT(i+a*spacer,j) * SCALE(scl)
DRAW pentdown WITH SHIFT(i-a*spacer,j)*SCALE(scl)
DRAW pentup WITH SHIFT(i+(a+1)*spacer,j)*SCALE(scl)
DRAW pentup WITH SHIFT(i-(a+1)*spacer,j)*SCALE(scl)
NEXT a
DRAW pentdown WITH SHIFT(i+5*spacer,j)*SCALE(scl)
160 PICTURE pentagon
161 PLOT 0,0
170 FOR n=0 TO 5
180 PLOT LINES:Rpent*COS(n*360/5),Rpent*(SIN(n*360/5)) ;
190 NEXT n
200 END PICTURE
500 PICTURE hexagon
501 LET big = 74.4121373379946
502 LET little = 45.5878626620054
503 LET x = 0
504 LET y = 0
505 PLOT 0,0
510 FOR n = 1 TO 3
520 PLOT LINES:Rhex*COS(x),Rhex*SIN(y);
525 LET x = x + big
526 LET y = y + big
530 PLOT LINES:Rhex*COS(x),Rhex*SIN(y);
535 LET x = x + little
536 LET y = y + little
537 PLOT LINES:Rhex*COS(x),Rhex*SIN(y);
540 NEXT n
550 END PICTURE
600 PICTURE pentup
610 REM face #1
620 DRAW hexagon WITH ROTATE(-90+(little/2))*SHIFT(0,0)
630 REM face #2
640 DRAW pentagon WITH ROTATE(18)*SHIFT(0,pentht + shexht)
650 REM face #3
660 DRAW hexagon WITH ROTATE(-90-(big/2))*SHIFT(0,-thexht*2)
690 END PICTURE
700 PICTURE pentdown
710 REM face #5
720 DRAW hexagon WITH ROTATE(-90-(big/2))*SHIFT(0,2*thexht*SIN(30))
730 REM face #6
740 DRAW pentagon WITH ROTATE(-18)*SHIFT(0,2*thexht*SIN(30)-shexht-pentht)
750 REM face #7
760 DRAW hexagon WITH ROTATE(90-(big/2))*SHIFT(0,2*thexht*(SIN(30)+1))
790 END PICTURE
1000 END