generated from mwc/project_drawing
	I couldn't draw the windows to my skyscrapers so, i though of using superturtle animation.However, I'm having trouble installing superturle. I did text my professor using discord about this issue. I have a feeling that I might have to change my intial project idea to something simple.
		
			
				
	
	
		
			12 lines
		
	
	
		
			292 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			292 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from superturtle.animation import animate
 | 
						|
from turtle import forward, right
 | 
						|
 | 
						|
def square(side_length):
 | 
						|
    for side in range(4):
 | 
						|
        forward(side_length)
 | 
						|
        right(90)
 | 
						|
 | 
						|
for frame in animate(40, loop=True):
 | 
						|
    size = frame.interpolate(50, 100, mirror=True)
 | 
						|
    square(size)
 |