generated from mwc/problemset_typeface
Added letter 'K'
Overall, I've made worse. Definitely turned out better than my drawing, though not by much. Focus and patience were key for this one. As far as feelings, satisfaction at getting it working on the first try of both test.py and proof.py. I'm tempted to do more letters; this was fun!
This commit is contained in:
parent
a6fab1e4de
commit
3a9b207f2e
33
typeface.py
33
typeface.py
|
@ -120,7 +120,36 @@ def draw_letter_j(unit):
|
|||
pass
|
||||
|
||||
def draw_letter_k(unit):
|
||||
pass
|
||||
no_pen(1,unit)
|
||||
left(90)
|
||||
segment(8,unit)
|
||||
right(90)
|
||||
segment(2,unit)
|
||||
right(90)
|
||||
segment(2,unit)
|
||||
left(135)
|
||||
diagonal(2,unit)
|
||||
right(45)
|
||||
segment(2,unit)
|
||||
right(90)
|
||||
segment(1,unit)
|
||||
right(45)
|
||||
diagonal(3,unit)
|
||||
left(90)
|
||||
diagonal(3,unit)
|
||||
right(45)
|
||||
segment(1,unit)
|
||||
right(90)
|
||||
segment(2,unit)
|
||||
right(45)
|
||||
diagonal(2,unit)
|
||||
left(135)
|
||||
segment(2,unit)
|
||||
right(90)
|
||||
segment(2,unit)
|
||||
|
||||
no_pen(1,unit)
|
||||
right(180)
|
||||
|
||||
def draw_letter_l(unit):
|
||||
pass
|
||||
|
@ -174,7 +203,7 @@ def draw_letter_u(unit):
|
|||
diagonal(1,unit)
|
||||
right(45)
|
||||
segment(4,unit)
|
||||
|
||||
|
||||
no_pen(2,unit)
|
||||
right(180)
|
||||
|
||||
|
|
Loading…
Reference in New Issue