Skip to content

Commit

Permalink
Remove random space from code
Browse files Browse the repository at this point in the history
  • Loading branch information
crcollins committed Jul 10, 2015
1 parent 23d3d34 commit b02e98a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chemtools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_axis_rotation_matrix(axis, theta):
ux = axis[0, 0] / r
uy = axis[1, 0] / r
uz = axis[2, 0] / r
rot = numpy. matrix([
rot = numpy.matrix([
[ct + ux ** 2 * nct, ux * uy * nct - uz * st, ux * uz * nct + uy * st],
[uy * ux * nct + uz * st, ct + uy ** 2 * nct, uy * uz * nct - ux * st],
[uz * ux * nct - uy * st, uz * uy * nct + ux * st, ct + uz ** 2 * nct],
Expand Down

0 comments on commit b02e98a

Please sign in to comment.