generated from mwc/problemset_typeface
My last work session today was working on the typeface problems. At first I felt confused because I was trying to figure out what my objective is. It looked intimidating but as I kept reading it the task became more visible as to what I need to do. Upon completing the assignment I tried to design and implement the first four letters of the alphabet but I came across a few comlications. When designing the letter A the middle crossbar was not being drawn in the correct spot, I sttruggled at first trying to figure out what to change but then figured out I had to change one wording of code to get the letter A to display properly. I felt relieved that I was able to solve my issue and after when trying to design the letter B I messed up my code somewhere to where my letter B turned out to be the letter P so at the end I was fortunate that I was able to accidently create a different letter which I was happy to end up using. Looking, at the list of command and looking up different commands of code online helped a lot when designing my chosen letters.
139 lines
2.3 KiB
Python
139 lines
2.3 KiB
Python
# typeface.py
|
|
# By Chris Proctor and _________
|
|
|
|
# Contains one function for each letter in the English alphabet.
|
|
# Each function should draw its letter at a scale of `unit`, and then
|
|
# return back to the same position and heading where it started.
|
|
|
|
# Note: The `sqrt` function from math may be helpful--if you want to
|
|
# move the turtle along the diagonal of a square with side length x,
|
|
# the turtle should move a distance of sqrt(x)
|
|
|
|
from turtle import *
|
|
from math import sqrt
|
|
|
|
def draw_letter_a(unit):
|
|
pendown()
|
|
left(75)
|
|
forward(unit * 8)
|
|
right(150)
|
|
forward(unit * 8)
|
|
backward(unit * 4)
|
|
left(75)
|
|
backward(unit * 2)
|
|
penup()
|
|
setheading(0)
|
|
goto(pos()[0] + unit * 8, pos()[1])
|
|
|
|
|
|
def draw_letter_b(unit):
|
|
pass
|
|
|
|
def draw_letter_c(unit):
|
|
pass
|
|
|
|
def draw_letter_d(unit):
|
|
pendown()
|
|
left(90)
|
|
forward(unit * 2)
|
|
right(90)
|
|
forward(unit)
|
|
right(45)
|
|
forward(unit / sqrt(2))
|
|
right(45)
|
|
forward(unit)
|
|
right(45)
|
|
forward(unit / sqrt(2))
|
|
right(45)
|
|
forward(unit)
|
|
penup()
|
|
setheading(0)
|
|
forward(unit * 2)
|
|
|
|
def draw_letter_e(unit):
|
|
pass
|
|
|
|
def draw_letter_f(unit):
|
|
pass
|
|
|
|
def draw_letter_g(unit):
|
|
pass
|
|
|
|
def draw_letter_h(unit):
|
|
pass
|
|
|
|
def draw_letter_i(unit):
|
|
pass
|
|
|
|
def draw_letter_j(unit):
|
|
pass
|
|
|
|
def draw_letter_k(unit):
|
|
pass
|
|
|
|
def draw_letter_l(unit):
|
|
left(90)
|
|
forward(unit * 8)
|
|
backward(unit * 8)
|
|
right(90)
|
|
forward(unit * 6)
|
|
backward(unit * 6)
|
|
|
|
def draw_letter_m(unit):
|
|
pass
|
|
|
|
def draw_letter_n(unit):
|
|
pass
|
|
|
|
def draw_letter_o(unit):
|
|
pass
|
|
|
|
def draw_letter_p(unit):
|
|
pendown()
|
|
left(90)
|
|
forward(unit * 8)
|
|
right(90)
|
|
forward(unit * 5)
|
|
right(90)
|
|
forward(unit * 4)
|
|
right(90)
|
|
forward(unit * 5)
|
|
backward(unit * 5)
|
|
right(90)
|
|
forward(unit * 4)
|
|
left(90)
|
|
forward(unit * 5)
|
|
penup()
|
|
setheading(0)
|
|
goto(pos()[0] + unit * 8, pos()[1])
|
|
|
|
def draw_letter_q(unit):
|
|
pass
|
|
|
|
def draw_letter_r(unit):
|
|
pass
|
|
|
|
def draw_letter_s(unit):
|
|
pass
|
|
|
|
def draw_letter_t(unit):
|
|
pass
|
|
|
|
def draw_letter_u(unit):
|
|
pass
|
|
|
|
def draw_letter_v(unit):
|
|
pass
|
|
|
|
def draw_letter_w(unit):
|
|
pass
|
|
|
|
def draw_letter_x(unit):
|
|
pass
|
|
|
|
def draw_letter_y(unit):
|
|
pass
|
|
|
|
def draw_letter_z(unit):
|
|
pass
|