generated from mwc/project_drawing
	Where I was first stuck was my idea for a project proposal. My original ideas seemed to be a bit more complicated as a first project and I thought of a simpler idea of creating a house and a rising sun. I figured out my project proposal. A strategy I used to get un-stuck was looking at simple project ideas and using my own environment to see what I can use as a simple project proposal. Something I wondered was "how can I get the sun to rise on one side and set on the other?". I soon decided to just keep the sun as a rising sun. What I want to learn more about is animating using code and a future idea for a project could be making a house with an animated sun rising on one side of the house and then setting on the other side of the house.
		
			
				
	
	
		
			30 lines
		
	
	
		
			439 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			439 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# drawing.py
 | 
						|
# ----------
 | 
						|
# By ____(you)___________
 | 
						|
#
 | 
						|
# (Briefly describe what this program does.)
 | 
						|
 | 
						|
from turtle import *
 | 
						|
 | 
						|
import turtle
 | 
						|
import time
 | 
						|
from shapes import draw_square, draw_triangle, draw_rectangle, draw_circle
 | 
						|
 | 
						|
# setup
 | 
						|
screen = turtle.Screen()
 | 
						|
screen.setup(width=800, height=600)
 | 
						|
screen.bgcolor("skyblue")
 | 
						|
screen.tracer(0)
 | 
						|
 | 
						|
pen = turtle.Turtle()
 | 
						|
pen.speed(0)
 | 
						|
pen.hideturtle()
 | 
						|
 | 
						|
 | 
						|
def draw_house():
 | 
						|
   
 | 
						|
 | 
						|
 | 
						|
def animate_sun():
 | 
						|
    
 |