From e8e8c1995a0c06a649d9f138642c1b689a6d7e70 Mon Sep 17 00:00:00 2001 From: Curtis Colwell Date: Mon, 25 Mar 2019 14:31:07 -0700 Subject: [PATCH] renormalize arrows --- atom_scripts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/atom_scripts.py b/atom_scripts.py index 72d889b..b42774f 100644 --- a/atom_scripts.py +++ b/atom_scripts.py @@ -87,9 +87,9 @@ def normalize(arrows): norm_arrows[i][0] = norm_values[i] for line in norm_arrows: - line[2][0] = line[1][0] + (line[2][0]/10) - line[2][1] = line[1][1] + (line[2][1]/10) - line[2][2] = line[1][2] + (line[2][2]/10) + line[2][0] = line[1][0] + (line[2][0]) + line[2][1] = line[1][1] + (line[2][1]) + line[2][2] = line[1][2] + (line[2][2]) norm_max += norm_min