Added 'U'

Feeling for this letter: relief. I didn't make the angle mistake from 'C' and also
planned ahead to avoid that mishap entirely by going clockwise from the lower-left-most
segment, rather than CCW, which allowed me to do the angled bit first and end on a straight
shot toward the lower-left corner. Now for the tricky part. I cannot get this K to look
the way I want it to in the drawing, so here's hoping my artwork is just poor.
This commit is contained in:
Pat Wick 2023-07-18 21:54:40 -04:00
parent 2a66250222
commit a6fab1e4de
1 changed files with 27 additions and 1 deletions

View File

@ -150,7 +150,33 @@ def draw_letter_t(unit):
pass
def draw_letter_u(unit):
pass
no_pen(2,unit)
left(135)
diagonal(1,unit)
right(45)
segment(7,unit)
right(90)
segment(2,unit)
right(90)
segment(5,unit)
left(45)
diagonal(1,unit)
left(90)
diagonal(1,unit)
left(45)
segment(5,unit)
right(90)
segment(2,unit)
right(90)
segment(7,unit)
right(45)
diagonal(1,unit)
right(45)
segment(4,unit)
no_pen(2,unit)
right(180)
def draw_letter_v(unit):
pass