Merge pull request #15957 from hasecilu/fix/capitalization

TechDraw: Fix capitalization of 2D and 3D
This commit is contained in:
Max Wilfinger
2024-11-15 18:37:47 +01:00
committed by GitHub
28 changed files with 56 additions and 56 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])]