From a6fab1e4de1661f82e2f81bc502e01c928729fbf Mon Sep 17 00:00:00 2001 From: Pat Wick Date: Tue, 18 Jul 2023 21:54:40 -0400 Subject: [PATCH] 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. --- typeface.py | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/typeface.py b/typeface.py index 862a2f4..706f096 100644 --- a/typeface.py +++ b/typeface.py @@ -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