Skip to content

Commit

Permalink
renormalize arrows
Browse files Browse the repository at this point in the history
  • Loading branch information
CurtisColwell committed Mar 25, 2019
1 parent 82ef51d commit e8e8c19
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 e8e8c19

Please sign in to comment.