Skip to content

Commit

Permalink
bad print
Browse files Browse the repository at this point in the history
  • Loading branch information
sgsellan committed Dec 4, 2023
1 parent 68af59d commit c03af57
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/test_rotation_matrix_from_vectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ def test_randomly_generated_2d(self):
R = gpy.rotation_matrix_from_vectors(u, v)
# check that they are aligned in 2D
are_aligned = np.cross(v, R.dot(u))
print(R.dot(u))
print(v)
print(are_aligned)
self.assertTrue(np.allclose(are_aligned, np.zeros(1), atol=1e-12))
# normalize
v = v/np.linalg.norm(v)
Expand Down

0 comments on commit c03af57

Please sign in to comment.