-
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
39 changed files
with
155 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
from ._transformations import ( | ||
apply_euler_angle, | ||
apply_rotation_matrix, | ||
apply_rotation_quaternion, | ||
apply_rotation_vector, | ||
compose_rotation_quaternion, | ||
euler_angle_identity, | ||
euler_angle_magnitude, | ||
euler_angle_to_rotation_matrix, | ||
euler_angle_to_rotation_quaternion, | ||
euler_angle_to_rotation_vector, | ||
invert_euler_angle, | ||
invert_rotation_matrix, | ||
invert_rotation_quaternion, | ||
invert_rotation_vector, | ||
mean_rotation_quaternion, | ||
random_euler_angle, | ||
random_rotation_matrix, | ||
random_rotation_quaternion, | ||
random_rotation_vector, | ||
rotation_matrix_identity, | ||
rotation_matrix_magnitude, | ||
rotation_matrix_to_euler_angle, | ||
rotation_matrix_to_rotation_quaternion, | ||
rotation_matrix_to_rotation_vector, | ||
rotation_quaternion_identity, | ||
rotation_quaternion_magnitude, | ||
rotation_quaternion_to_euler_angle, | ||
rotation_quaternion_to_rotation_matrix, | ||
rotation_quaternion_to_rotation_vector, | ||
rotation_vector_identity, | ||
rotation_vector_magnitude, | ||
rotation_vector_to_euler_angle, | ||
rotation_vector_to_rotation_matrix, | ||
rotation_vector_to_rotation_quaternion, | ||
) |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
from ._rotations import ( | ||
apply_euler_angle, | ||
apply_rotation_matrix, | ||
apply_rotation_quaternion, | ||
apply_rotation_vector, | ||
compose_rotation_quaternion, | ||
euler_angle_identity, | ||
euler_angle_magnitude, | ||
euler_angle_to_rotation_matrix, | ||
euler_angle_to_rotation_quaternion, | ||
euler_angle_to_rotation_vector, | ||
invert_euler_angle, | ||
invert_rotation_matrix, | ||
invert_rotation_quaternion, | ||
invert_rotation_vector, | ||
mean_rotation_quaternion, | ||
random_euler_angle, | ||
random_rotation_matrix, | ||
random_rotation_quaternion, | ||
random_rotation_vector, | ||
rotation_matrix_identity, | ||
rotation_matrix_magnitude, | ||
rotation_matrix_to_euler_angle, | ||
rotation_matrix_to_rotation_quaternion, | ||
rotation_matrix_to_rotation_vector, | ||
rotation_quaternion_identity, | ||
rotation_quaternion_magnitude, | ||
rotation_quaternion_to_euler_angle, | ||
rotation_quaternion_to_rotation_matrix, | ||
rotation_quaternion_to_rotation_vector, | ||
rotation_vector_identity, | ||
rotation_vector_magnitude, | ||
rotation_vector_to_euler_angle, | ||
rotation_vector_to_rotation_matrix, | ||
rotation_vector_to_rotation_quaternion, | ||
) |
52 changes: 52 additions & 0 deletions
52
src/beignet/_geometry/_transformations/_rotations/__init__.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
from ._apply_euler_angle import apply_euler_angle | ||
from ._apply_rotation_matrix import apply_rotation_matrix | ||
from ._apply_rotation_quaternion import ( | ||
apply_rotation_quaternion, | ||
) | ||
from ._apply_rotation_vector import apply_rotation_vector | ||
from ._compose_rotation_quaternion import compose_rotation_quaternion | ||
from ._euler_angle_identity import euler_angle_identity | ||
from ._euler_angle_magnitude import euler_angle_magnitude | ||
from ._euler_angle_to_rotation_matrix import euler_angle_to_rotation_matrix | ||
from ._euler_angle_to_rotation_quaternion import ( | ||
euler_angle_to_rotation_quaternion, | ||
) | ||
from ._euler_angle_to_rotation_vector import euler_angle_to_rotation_vector | ||
from ._invert_euler_angle import invert_euler_angle | ||
from ._invert_rotation_matrix import invert_rotation_matrix | ||
from ._invert_rotation_quaternion import invert_rotation_quaternion | ||
from ._invert_rotation_vector import invert_rotation_vector | ||
from ._mean_rotation_quaternion import mean_rotation_quaternion | ||
from ._random_euler_angle import random_euler_angle | ||
from ._random_rotation_matrix import random_rotation_matrix | ||
from ._random_rotation_quaternion import random_rotation_quaternion | ||
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_to_euler_angle import rotation_matrix_to_euler_angle | ||
from ._rotation_matrix_to_rotation_quaternion import ( | ||
rotation_matrix_to_rotation_quaternion, | ||
) | ||
from ._rotation_matrix_to_rotation_vector import ( | ||
rotation_matrix_to_rotation_vector, | ||
) | ||
from ._rotation_quaternion_identity import rotation_quaternion_identity | ||
from ._rotation_quaternion_magnitude import rotation_quaternion_magnitude | ||
from ._rotation_quaternion_to_euler_angle import ( | ||
rotation_quaternion_to_euler_angle, | ||
) | ||
from ._rotation_quaternion_to_rotation_matrix import ( | ||
rotation_quaternion_to_rotation_matrix, | ||
) | ||
from ._rotation_quaternion_to_rotation_vector import ( | ||
rotation_quaternion_to_rotation_vector, | ||
) | ||
from ._rotation_vector_identity import rotation_vector_identity | ||
from ._rotation_vector_magnitude import rotation_vector_magnitude | ||
from ._rotation_vector_to_euler_angle import rotation_vector_to_euler_angle | ||
from ._rotation_vector_to_rotation_matrix import ( | ||
rotation_vector_to_rotation_matrix, | ||
) | ||
from ._rotation_vector_to_rotation_quaternion import ( | ||
rotation_vector_to_rotation_quaternion, | ||
) |
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.
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.
File renamed without changes.
File renamed without changes.