-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
90 changed files
with
114 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,60 @@ | ||
from ._rotations import ( | ||
apply_euler_angle, | ||
from ._apply_euler_angle import apply_euler_angle | ||
from ._apply_quaternion import ( | ||
apply_quaternion, | ||
apply_rotation_matrix, | ||
apply_rotation_vector, | ||
compose_euler_angle, | ||
compose_quaternion, | ||
compose_rotation_matrix, | ||
compose_rotation_vector, | ||
euler_angle_identity, | ||
euler_angle_magnitude, | ||
euler_angle_mean, | ||
) | ||
from ._apply_rotation_matrix import apply_rotation_matrix | ||
from ._apply_rotation_vector import apply_rotation_vector | ||
from ._compose_euler_angle import compose_euler_angle | ||
from ._compose_quaternion import compose_quaternion | ||
from ._compose_rotation_matrix import compose_rotation_matrix | ||
from ._compose_rotation_vector import compose_rotation_vector | ||
from ._euler_angle_identity import euler_angle_identity | ||
from ._euler_angle_magnitude import euler_angle_magnitude | ||
from ._euler_angle_mean import euler_angle_mean | ||
from ._euler_angle_to_quaternion import ( | ||
euler_angle_to_quaternion, | ||
euler_angle_to_rotation_matrix, | ||
euler_angle_to_rotation_vector, | ||
invert_euler_angle, | ||
invert_quaternion, | ||
invert_rotation_matrix, | ||
invert_rotation_vector, | ||
quaternion_identity, | ||
quaternion_magnitude, | ||
quaternion_mean, | ||
) | ||
from ._euler_angle_to_rotation_matrix import euler_angle_to_rotation_matrix | ||
from ._euler_angle_to_rotation_vector import euler_angle_to_rotation_vector | ||
from ._invert_euler_angle import invert_euler_angle | ||
from ._invert_quaternion import invert_quaternion | ||
from ._invert_rotation_matrix import invert_rotation_matrix | ||
from ._invert_rotation_vector import invert_rotation_vector | ||
from ._quaternion_identity import quaternion_identity | ||
from ._quaternion_magnitude import quaternion_magnitude | ||
from ._quaternion_mean import quaternion_mean | ||
from ._quaternion_to_euler_angle import ( | ||
quaternion_to_euler_angle, | ||
) | ||
from ._quaternion_to_rotation_matrix import ( | ||
quaternion_to_rotation_matrix, | ||
) | ||
from ._quaternion_to_rotation_vector import ( | ||
quaternion_to_rotation_vector, | ||
random_euler_angle, | ||
random_quaternion, | ||
random_rotation_matrix, | ||
random_rotation_vector, | ||
rotation_matrix_identity, | ||
rotation_matrix_magnitude, | ||
rotation_matrix_mean, | ||
rotation_matrix_to_euler_angle, | ||
) | ||
from ._random_euler_angle import random_euler_angle | ||
from ._random_quaternion import random_quaternion | ||
from ._random_rotation_matrix import random_rotation_matrix | ||
from ._random_rotation_vector import random_rotation_vector | ||
from ._rotation_matrix_identity import rotation_matrix_identity | ||
from ._rotation_matrix_magnitude import rotation_matrix_magnitude | ||
from ._rotation_matrix_mean import rotation_matrix_mean | ||
from ._rotation_matrix_to_euler_angle import rotation_matrix_to_euler_angle | ||
from ._rotation_matrix_to_quaternion import ( | ||
rotation_matrix_to_quaternion, | ||
) | ||
from ._rotation_matrix_to_rotation_vector import ( | ||
rotation_matrix_to_rotation_vector, | ||
rotation_vector_identity, | ||
rotation_vector_magnitude, | ||
rotation_vector_mean, | ||
rotation_vector_to_euler_angle, | ||
) | ||
from ._rotation_vector_identity import rotation_vector_identity | ||
from ._rotation_vector_magnitude import rotation_vector_magnitude | ||
from ._rotation_vector_mean import rotation_vector_mean | ||
from ._rotation_vector_to_euler_angle import rotation_vector_to_euler_angle | ||
from ._rotation_vector_to_quaternion import ( | ||
rotation_vector_to_quaternion, | ||
) | ||
from ._rotation_vector_to_rotation_matrix import ( | ||
rotation_vector_to_rotation_matrix, | ||
) | ||
from ._translations import translation_identity | ||
from ._slerp import slerp | ||
from ._translation_identity import translation_identity |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ormations/_rotations/_apply_quaternion.py → ...try/_transformations/_apply_quaternion.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ions/_rotations/_apply_rotation_vector.py → ...transformations/_apply_rotation_vector.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...ations/_rotations/_compose_euler_angle.py → .../_transformations/_compose_euler_angle.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ns/_rotations/_compose_rotation_matrix.py → ...ansformations/_compose_rotation_matrix.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 2 additions & 1 deletion
3
...ns/_rotations/_compose_rotation_vector.py → ...ansformations/_compose_rotation_vector.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...mations/_rotations/_random_euler_angle.py → ...y/_transformations/_random_euler_angle.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...ons/_rotations/_random_rotation_matrix.py → ...ransformations/_random_rotation_matrix.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ons/_rotations/_random_rotation_vector.py → ...ransformations/_random_rotation_vector.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
.../_rotations/_rotation_matrix_magnitude.py → ...sformations/_rotation_matrix_magnitude.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
...ations/_rotation_matrix_to_euler_angle.py → ...ations/_rotation_matrix_to_euler_angle.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
...ns/_rotation_matrix_to_rotation_vector.py → ...ns/_rotation_matrix_to_rotation_vector.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
58 changes: 0 additions & 58 deletions
58
src/beignet/ops/_geometry/_transformations/_rotations/__init__.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
1 change: 0 additions & 1 deletion
1
src/beignet/ops/_geometry/_transformations/_translations/__init__.py
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
...ons/_rotations/test__apply_euler_angle.py → ...ransformations/test__apply_euler_angle.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ions/_rotations/test__apply_quaternion.py → ...transformations/test__apply_quaternion.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
..._rotations/test__apply_rotation_matrix.py → ...formations/test__apply_rotation_matrix.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
..._rotations/test__apply_rotation_vector.py → ...formations/test__apply_rotation_vector.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...s/_rotations/test__compose_euler_angle.py → ...nsformations/test__compose_euler_angle.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...ns/_rotations/test__compose_quaternion.py → ...ansformations/test__compose_quaternion.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 3 additions & 2 deletions
5
...otations/test__compose_rotation_matrix.py → ...rmations/test__compose_rotation_matrix.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.