TechDraw: Fix capitalization of 2D and 3D

This commit is contained in:
hasecilu
2024-08-18 19:11:06 -06:00
parent 33cd969280
commit 66e81e866b
6 changed files with 15 additions and 15 deletions

View File

@@ -305,7 +305,7 @@ def p_part(p):
def p_2d_point(p):
'2d_point : OSQUARE NUMBER COMMA NUMBER ESQUARE'
global points_list
if printverbose: print("2d Point")
if printverbose: print("2D Point")
p[0] = [float(p[2]), float(p[4])]