Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Innoptech/OpenSTL
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanchristopheruel committed Mar 18, 2024
2 parents a685ba1 + 9d7ed93 commit 27abc0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ rotation_matrix = np.array([
[1, 0, 0],
[0, 0, 1]
])
rotated_quad = np.matmul(rotation_matrix, quad.reshape(-1,3).T).T.reshape()
rotated_quad = np.matmul(rotation_matrix, quad.reshape(-1,3).T).T.reshape(-1,4,3)

# Translation
translation_vector = np.array([1,1,1])
Expand Down

0 comments on commit 27abc0f

Please sign in to comment.