Skip to content

Commit

Permalink
Remove PLY scaling factor
Browse files Browse the repository at this point in the history
Fixes #286
  • Loading branch information
JarrettSJohnson committed Jul 20, 2023
1 parent 9333da4 commit 26d795f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/pymol/cgo.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,9 +606,9 @@ def compute_surface_normals():
obj.append(vertex['nz'])

obj.append(VERTEX)
obj.append(vertex['x'] * 100)
obj.append(vertex['y'] * 100)
obj.append(vertex['z'] * 100)
obj.append(vertex['x'])
obj.append(vertex['y'])
obj.append(vertex['z'])
obj.append(END)

obj.append(STOP)
Expand Down

0 comments on commit 26d795f

Please sign in to comment.