Project Due: Tuesday, 3/10, 12 MIDNIGHT Write a program that uses three images to draw a fractal. Here are the specifications:
Your program should refer to three specific images-- you need not have the end-user choose the images. You must break this program into functions. Define the following: def CopyPic(srcPic,targetPic,targetX,targetY) #draws a smaller picture (srcPic) in another picture (targetPic) at the coordinates targetX,targetY. def Scale(pic,scaleAmount) scales a picture by some amount. It should return the scaled picture and not modify the parameter 'pic'. Write these two functions first-- you'll receive partial credit just for these. |

