Skip to content

Commit

Permalink
Merge pull request #6 from CurtisColwell/arrow_normalization
Browse files Browse the repository at this point in the history
renormalize arrows
  • Loading branch information
CurtisColwell authored Mar 26, 2019
2 parents c56e7f7 + e8e8c19 commit acc2d42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions atom_scripts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit acc2d42

Please sign in to comment.