-
Notifications
You must be signed in to change notification settings - Fork 182
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RF: Uncommented the animation sections and imports
- Loading branch information
1 parent
8df2f94
commit 70584d3
Showing
4 changed files
with
1,525 additions
and
1,529 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# import lazy_loader as lazy | ||
import lazy_loader as lazy | ||
|
||
# __getattr__, __dir__, __all__ = lazy.attach_stub(__name__, __file__) | ||
__getattr__, __dir__, __all__ = lazy.attach_stub(__name__, __file__) |
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,51 +1,51 @@ | ||
# # This file is used to enable type hinting for the `fury.animation` module. | ||
# # explicit definition of `__all__` will enable type inference for engines. | ||
# This file is used to enable type hinting for the `fury.animation` module. | ||
# explicit definition of `__all__` will enable type inference for engines. | ||
|
||
# __all__ = [ | ||
# "Animation", | ||
# "CameraAnimation", | ||
# # "Timeline", | ||
# "euclidean_distances", | ||
# "get_next_timestamp", | ||
# "get_previous_timestamp", | ||
# "get_time_tau", | ||
# "get_timestamps_from_keyframes", | ||
# "get_values_from_keyframes", | ||
# "lerp", | ||
# "color_interpolator", | ||
# "cubic_bezier_interpolator", | ||
# "cubic_spline_interpolator", | ||
# "hsv_color_interpolator", | ||
# "lab_color_interpolator", | ||
# "linear_interpolator", | ||
# "slerp", | ||
# "spline_interpolator", | ||
# "step_interpolator", | ||
# "tan_cubic_spline_interpolator", | ||
# "xyz_color_interpolator", | ||
# ] | ||
__all__ = [ | ||
"Animation", | ||
"CameraAnimation", | ||
# "Timeline", | ||
"euclidean_distances", | ||
"get_next_timestamp", | ||
"get_previous_timestamp", | ||
"get_time_tau", | ||
"get_timestamps_from_keyframes", | ||
"get_values_from_keyframes", | ||
"lerp", | ||
"color_interpolator", | ||
"cubic_bezier_interpolator", | ||
"cubic_spline_interpolator", | ||
"hsv_color_interpolator", | ||
"lab_color_interpolator", | ||
"linear_interpolator", | ||
"slerp", | ||
"spline_interpolator", | ||
"step_interpolator", | ||
"tan_cubic_spline_interpolator", | ||
"xyz_color_interpolator", | ||
] | ||
|
||
# from .animation import Animation, CameraAnimation | ||
# from .helpers import ( | ||
# euclidean_distances, | ||
# get_next_timestamp, | ||
# get_previous_timestamp, | ||
# get_time_tau, | ||
# get_timestamps_from_keyframes, | ||
# get_values_from_keyframes, | ||
# lerp, | ||
# ) | ||
# from .interpolator import ( | ||
# color_interpolator, | ||
# cubic_bezier_interpolator, | ||
# cubic_spline_interpolator, | ||
# hsv_color_interpolator, | ||
# lab_color_interpolator, | ||
# linear_interpolator, | ||
# slerp, | ||
# spline_interpolator, | ||
# step_interpolator, | ||
# tan_cubic_spline_interpolator, | ||
# xyz_color_interpolator, | ||
# ) | ||
# # from .timeline import Timeline | ||
from .animation import Animation, CameraAnimation | ||
from .helpers import ( | ||
euclidean_distances, | ||
get_next_timestamp, | ||
get_previous_timestamp, | ||
get_time_tau, | ||
get_timestamps_from_keyframes, | ||
get_values_from_keyframes, | ||
lerp, | ||
) | ||
from .interpolator import ( | ||
color_interpolator, | ||
cubic_bezier_interpolator, | ||
cubic_spline_interpolator, | ||
hsv_color_interpolator, | ||
lab_color_interpolator, | ||
linear_interpolator, | ||
slerp, | ||
spline_interpolator, | ||
step_interpolator, | ||
tan_cubic_spline_interpolator, | ||
xyz_color_interpolator, | ||
) | ||
# from .timeline import Timeline |
Oops, something went wrong.