From 5daeb4b5141a62e566358e9b44ea9451d3438cc9 Mon Sep 17 00:00:00 2001 From: Hope Date: Tue, 13 May 2025 23:27:45 -0400 Subject: [PATCH] I updated the design for C and D. It was so much easier to debug and make adjustments using the functions. --- typeface.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/typeface.py b/typeface.py index a38a562..877088c 100644 --- a/typeface.py +++ b/typeface.py @@ -116,14 +116,14 @@ def draw_letter_d(unit): straight_n_turn(4, "l", 45, unit) diagonal_n_turn(2, "l", 135, unit) - lift_and_move(3, unit) - straight_n_turn(2, "r", 45, unit) - diagonal_n_turn(1, "r", 45, unit) - straight_n_turn(1, "r", 90, unit) + lift_and_move(2, unit) straight_n_turn(4, "r", 90, unit) - straight_n_turn(1, "r", 45, unit) - diagonal_n_turn(1, "l", 135, unit) - lift_and_move(3, unit) + # diagonal_n_turn(1, "r", 45, unit) + straight_n_turn(2, "r", 90, unit) + straight_n_turn(4, "r", 90, unit) + straight_n_turn(2, "l", 90, unit) + # diagonal_n_turn(1, "l", 135, unit) + lift_and_move(2, unit) left(90) straight_n_turn(4, "l", 90, unit) straight_n_turn(8, "r", 90, unit)