├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── aaa.R ├── cpp11.R ├── display_ease.R ├── gen.R ├── gen_along.R ├── gen_at.R ├── gen_components.R ├── gen_events.R ├── gen_keyframe.R ├── get_frame.R ├── interpolate_along.R ├── interpolate_at.R ├── interpolate_element.R ├── interpolate_element_at.R ├── interpolate_fill.R ├── interpolate_state.R ├── tween.R ├── tween_along.R ├── tween_appear.R ├── tween_at.R ├── tween_colour.R ├── tween_components.R ├── tween_constant.R ├── tween_date.R ├── tween_datetime.R ├── tween_elements.R ├── tween_events.R ├── tween_fill.R ├── tween_numeric.R ├── tween_state.R ├── tween_states.R └── tweenr_package.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── man ├── display_ease.Rd ├── dot-complete_states.Rd ├── dot-get_last_frame.Rd ├── dot-max_id.Rd ├── figures │ ├── README-unnamed-chunk-3.gif │ ├── README-unnamed-chunk-4-1.png │ ├── logo.png │ └── logo.svg ├── gen_along.Rd ├── gen_at.Rd ├── gen_components.Rd ├── gen_events.Rd ├── gen_internal.Rd ├── gen_keyframe.Rd ├── get_frame.Rd ├── interpolate_custom_at.Rd ├── prepare_keyframes.Rd ├── reexports.Rd ├── tween.Rd ├── tween_along.Rd ├── tween_appear.Rd ├── tween_at.Rd ├── tween_at_t.Rd ├── tween_components.Rd ├── tween_elements.Rd ├── tween_events.Rd ├── tween_fill.Rd ├── tween_state.Rd ├── tween_states.Rd ├── tweenr-package.Rd └── vec_tween_class.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── revdep ├── README.md ├── cran.md ├── failures.md └── problems.md ├── src ├── .gitignore ├── along.cpp ├── at.cpp ├── cpp11.cpp ├── easing.c ├── easing.h ├── element.cpp ├── element_at.cpp ├── fill.cpp ├── state.cpp └── utils.h └── tests ├── testthat.R └── testthat ├── test-along.R ├── test-at.R ├── test-components.R ├── test-events.R ├── test-fill.R └── test-state.R /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Thomas Lin Pedersen 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/cpp11.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/cpp11.R -------------------------------------------------------------------------------- /R/display_ease.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/display_ease.R -------------------------------------------------------------------------------- /R/gen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/gen.R -------------------------------------------------------------------------------- /R/gen_along.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/gen_along.R -------------------------------------------------------------------------------- /R/gen_at.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/gen_at.R -------------------------------------------------------------------------------- /R/gen_components.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/gen_components.R -------------------------------------------------------------------------------- /R/gen_events.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/gen_events.R -------------------------------------------------------------------------------- /R/gen_keyframe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/gen_keyframe.R -------------------------------------------------------------------------------- /R/get_frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/get_frame.R -------------------------------------------------------------------------------- /R/interpolate_along.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/interpolate_along.R -------------------------------------------------------------------------------- /R/interpolate_at.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/interpolate_at.R -------------------------------------------------------------------------------- /R/interpolate_element.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/interpolate_element.R -------------------------------------------------------------------------------- /R/interpolate_element_at.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/interpolate_element_at.R -------------------------------------------------------------------------------- /R/interpolate_fill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/interpolate_fill.R -------------------------------------------------------------------------------- /R/interpolate_state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/interpolate_state.R -------------------------------------------------------------------------------- /R/tween.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween.R -------------------------------------------------------------------------------- /R/tween_along.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_along.R -------------------------------------------------------------------------------- /R/tween_appear.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_appear.R -------------------------------------------------------------------------------- /R/tween_at.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_at.R -------------------------------------------------------------------------------- /R/tween_colour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_colour.R -------------------------------------------------------------------------------- /R/tween_components.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_components.R -------------------------------------------------------------------------------- /R/tween_constant.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_constant.R -------------------------------------------------------------------------------- /R/tween_date.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_date.R -------------------------------------------------------------------------------- /R/tween_datetime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_datetime.R -------------------------------------------------------------------------------- /R/tween_elements.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_elements.R -------------------------------------------------------------------------------- /R/tween_events.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_events.R -------------------------------------------------------------------------------- /R/tween_fill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_fill.R -------------------------------------------------------------------------------- /R/tween_numeric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_numeric.R -------------------------------------------------------------------------------- /R/tween_state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_state.R -------------------------------------------------------------------------------- /R/tween_states.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tween_states.R -------------------------------------------------------------------------------- /R/tweenr_package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/R/tweenr_package.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/display_ease.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/display_ease.Rd -------------------------------------------------------------------------------- /man/dot-complete_states.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/dot-complete_states.Rd -------------------------------------------------------------------------------- /man/dot-get_last_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/dot-get_last_frame.Rd -------------------------------------------------------------------------------- /man/dot-max_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/dot-max_id.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/figures/README-unnamed-chunk-3.gif -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/figures/README-unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/gen_along.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/gen_along.Rd -------------------------------------------------------------------------------- /man/gen_at.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/gen_at.Rd -------------------------------------------------------------------------------- /man/gen_components.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/gen_components.Rd -------------------------------------------------------------------------------- /man/gen_events.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/gen_events.Rd -------------------------------------------------------------------------------- /man/gen_internal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/gen_internal.Rd -------------------------------------------------------------------------------- /man/gen_keyframe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/gen_keyframe.Rd -------------------------------------------------------------------------------- /man/get_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/get_frame.Rd -------------------------------------------------------------------------------- /man/interpolate_custom_at.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/interpolate_custom_at.Rd -------------------------------------------------------------------------------- /man/prepare_keyframes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/prepare_keyframes.Rd -------------------------------------------------------------------------------- /man/reexports.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/reexports.Rd -------------------------------------------------------------------------------- /man/tween.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween.Rd -------------------------------------------------------------------------------- /man/tween_along.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_along.Rd -------------------------------------------------------------------------------- /man/tween_appear.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_appear.Rd -------------------------------------------------------------------------------- /man/tween_at.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_at.Rd -------------------------------------------------------------------------------- /man/tween_at_t.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_at_t.Rd -------------------------------------------------------------------------------- /man/tween_components.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_components.Rd -------------------------------------------------------------------------------- /man/tween_elements.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_elements.Rd -------------------------------------------------------------------------------- /man/tween_events.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_events.Rd -------------------------------------------------------------------------------- /man/tween_fill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_fill.Rd -------------------------------------------------------------------------------- /man/tween_state.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_state.Rd -------------------------------------------------------------------------------- /man/tween_states.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tween_states.Rd -------------------------------------------------------------------------------- /man/tweenr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/tweenr-package.Rd -------------------------------------------------------------------------------- /man/vec_tween_class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/man/vec_tween_class.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- 1 | # Revdeps 2 | 3 | -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/along.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/along.cpp -------------------------------------------------------------------------------- /src/at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/at.cpp -------------------------------------------------------------------------------- /src/cpp11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/cpp11.cpp -------------------------------------------------------------------------------- /src/easing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/easing.c -------------------------------------------------------------------------------- /src/easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/easing.h -------------------------------------------------------------------------------- /src/element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/element.cpp -------------------------------------------------------------------------------- /src/element_at.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/element_at.cpp -------------------------------------------------------------------------------- /src/fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/fill.cpp -------------------------------------------------------------------------------- /src/state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/state.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/src/utils.h -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-along.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/tests/testthat/test-along.R -------------------------------------------------------------------------------- /tests/testthat/test-at.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/tests/testthat/test-at.R -------------------------------------------------------------------------------- /tests/testthat/test-components.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/tests/testthat/test-components.R -------------------------------------------------------------------------------- /tests/testthat/test-events.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/tests/testthat/test-events.R -------------------------------------------------------------------------------- /tests/testthat/test-fill.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/tests/testthat/test-fill.R -------------------------------------------------------------------------------- /tests/testthat/test-state.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/tweenr/HEAD/tests/testthat/test-state.R --------------------------------------------------------------------------------