├── .cargo └── config.toml ├── .envrc ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── website.yml ├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── Ghostscript_Tiger.svg ├── KaTeX_AMS-Regular.ttf ├── arc.mp4 ├── arc.png ├── arc_between_points.mp4 ├── arc_between_points.png ├── basic.mp4 ├── hello_ranim.gif ├── palettes.mp4 ├── palettes.png ├── ranim.png ├── ranim.svg ├── ranim_logo.gif ├── test.svg ├── test1.svg └── text.svg ├── benches ├── .gitignore ├── Cargo.toml ├── benches │ ├── eval.rs │ ├── extract.rs │ └── render.rs ├── release.toml └── src │ └── lib.rs ├── book ├── .gitignore ├── book.toml ├── mermaid-init.js ├── mermaid.min.js ├── src │ ├── SUMMARY.md │ ├── cli.md │ ├── custom-item.md │ ├── getting_started.md │ ├── timeline.png │ └── understand │ │ └── core │ │ ├── README.md │ │ ├── animation.md │ │ └── timeline.md └── theme │ ├── book.js │ ├── css │ ├── chrome.css │ ├── general.css │ ├── print.css │ └── variables.css │ ├── favicon.png │ ├── favicon.svg │ ├── fonts │ ├── OPEN-SANS-LICENSE.txt │ ├── SOURCE-CODE-PRO-LICENSE.txt │ ├── fonts.css │ ├── open-sans-v17-all-charsets-300.woff2 │ ├── open-sans-v17-all-charsets-300italic.woff2 │ ├── open-sans-v17-all-charsets-600.woff2 │ ├── open-sans-v17-all-charsets-600italic.woff2 │ ├── open-sans-v17-all-charsets-700.woff2 │ ├── open-sans-v17-all-charsets-700italic.woff2 │ ├── open-sans-v17-all-charsets-800.woff2 │ ├── open-sans-v17-all-charsets-800italic.woff2 │ ├── open-sans-v17-all-charsets-italic.woff2 │ ├── open-sans-v17-all-charsets-regular.woff2 │ └── source-code-pro-v11-all-charsets-500.woff2 │ ├── highlight.css │ ├── highlight.js │ ├── index.hbs │ ├── pagetoc.css │ └── pagetoc.js ├── ciallo.toml ├── example-packages └── app │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── index.html │ ├── manual.html │ ├── release.toml │ └── src │ ├── lib.rs │ └── main.rs ├── examples ├── arc │ ├── README.md │ └── lib.rs ├── arc_between_points │ ├── README.md │ └── lib.rs ├── basic │ ├── README.md │ └── lib.rs ├── bubble_sort │ └── lib.rs ├── extract_vitem_visualize │ └── lib.rs ├── getting_started0 │ └── lib.rs ├── getting_started1 │ └── lib.rs ├── getting_started2 │ └── lib.rs ├── hanoi │ └── lib.rs ├── hello_ranim │ └── lib.rs ├── palettes │ ├── README.md │ └── lib.rs ├── perspective_blend │ └── lib.rs ├── ranim_logo │ └── lib.rs ├── selective_sort │ └── lib.rs ├── test │ └── lib.rs └── thesis │ └── main.rs ├── flake.lock ├── flake.nix ├── justfile ├── notes └── README.md ├── packages ├── ranim-anims │ ├── Cargo.toml │ └── src │ │ ├── creation.rs │ │ ├── fading.rs │ │ ├── func.rs │ │ ├── lagged.rs │ │ ├── lib.rs │ │ └── transform.rs ├── ranim-app │ ├── Cargo.toml │ └── src │ │ ├── egui_tools.rs │ │ ├── lib.rs │ │ ├── pipeline.rs │ │ ├── shader.wgsl │ │ └── timeline.rs ├── ranim-cli │ ├── Cargo.toml │ └── src │ │ ├── cli.rs │ │ ├── cli │ │ ├── preview.rs │ │ └── render.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ └── workspace.rs ├── ranim-core │ ├── Cargo.toml │ └── src │ │ ├── animation.rs │ │ ├── color │ │ ├── mod.rs │ │ └── palettes.rs │ │ ├── components │ │ ├── mod.rs │ │ ├── point.rs │ │ ├── rgba.rs │ │ ├── vpoint.rs │ │ └── width.rs │ │ ├── core_item │ │ ├── camera_frame.rs │ │ ├── mod.rs │ │ └── vitem.rs │ │ ├── lib.rs │ │ ├── store.rs │ │ ├── timeline.rs │ │ ├── traits.rs │ │ └── utils │ │ ├── bezier.rs │ │ ├── math.rs │ │ ├── mod.rs │ │ └── rate_functions.rs ├── ranim-items │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── vitem.rs │ │ └── vitem │ │ ├── arrow.rs │ │ ├── geometry.rs │ │ ├── geometry │ │ ├── arc.rs │ │ ├── circle.rs │ │ └── polygon.rs │ │ ├── line.rs │ │ ├── svg.rs │ │ └── typst.rs ├── ranim-macros │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── scene.rs │ │ └── utils.rs └── ranim-render │ ├── Cargo.toml │ └── src │ ├── lib.rs │ ├── pipelines │ ├── debug.rs │ ├── map_3d_to_2d.rs │ ├── mod.rs │ ├── shaders │ │ ├── debug.wgsl │ │ ├── map_3d_to_2d.wgsl │ │ └── vitem.wgsl │ └── vitem.rs │ ├── primitives.rs │ ├── primitives │ └── vitem.rs │ └── utils.rs ├── puffin-Cargo.lock.patch ├── shader ├── shader.wgsl ├── simple.wgsl ├── vmobject_compute.wgsl ├── vmobject_fill.wgsl ├── vmobject_stroke.wgsl ├── vpath_compute.wgsl ├── vpath_fill.wgsl └── vpath_stroke.wgsl ├── src ├── cmd │ ├── mod.rs │ ├── render.rs │ └── render │ │ └── file_writer.rs └── lib.rs ├── wasm-bindgen-cli.nix ├── website ├── .gitignore ├── config.toml ├── content │ ├── _index.md │ └── examples │ │ ├── _index.md │ │ ├── arc.md │ │ ├── arc_between_points.md │ │ ├── basic.md │ │ ├── bubble_sort.md │ │ ├── extract_vitem_visualize.md │ │ ├── hanoi.md │ │ ├── hello_ranim.md │ │ ├── palettes.md │ │ ├── perspective_blend.md │ │ ├── ranim_logo.md │ │ └── selective_sort.md ├── data │ ├── arc.toml │ ├── arc_between_points.toml │ ├── basic.toml │ ├── bubble_sort.toml │ ├── extract_vitem_visualize.toml │ ├── getting_started0.toml │ ├── getting_started1.toml │ ├── getting_started2.toml │ ├── hanoi.toml │ ├── hello_ranim.toml │ ├── palettes.toml │ ├── perspective_blend.toml │ ├── ranim_logo.toml │ ├── selective_sort.toml │ └── test.toml ├── sass │ ├── _mixins.scss │ ├── _vars.scss │ ├── components │ │ ├── _card.scss │ │ ├── _container.scss │ │ ├── _layout.scss │ │ ├── _nav-btn.scss │ │ ├── _outline.scss │ │ ├── _syntax-theme.scss │ │ └── _zola-anchor.scss │ ├── elements │ │ ├── _body.scss │ │ ├── _codeblock.scss │ │ ├── _html.scss │ │ ├── _tree-menu.scss │ │ └── _video.scss │ └── index.scss ├── static │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── examples │ │ ├── arc │ │ │ ├── arc_1920x1080_60.mp4 │ │ │ └── preview.png │ │ ├── arc_between_points │ │ │ ├── arc_between_points_1920x1080_60.mp4 │ │ │ └── preview.png │ │ ├── basic │ │ │ ├── basic_1920x1080_60.mp4 │ │ │ └── preview.png │ │ ├── bubble_sort │ │ │ ├── bubble_sort_10_1920x1080_60.mp4 │ │ │ ├── bubble_sort_1920x1080_60.mp4 │ │ │ ├── preview-10.png │ │ │ └── preview-100.png │ │ ├── extract_vitem_visualize │ │ │ ├── extract_vitem_visualize_1920x1080_60.mp4 │ │ │ ├── preview-hello_ranim.png │ │ │ ├── preview-ranim_text.png │ │ │ └── ranim_text_1920x1080_60.mp4 │ │ ├── getting_started0 │ │ │ └── getting_started0_1920x1080_60.mp4 │ │ ├── getting_started1 │ │ │ └── getting_started1_1920x1080_60.mp4 │ │ ├── getting_started2 │ │ │ └── getting_started2_1920x1080_60.mp4 │ │ ├── hanoi │ │ │ ├── hanoi_1920x1080_60.mp4 │ │ │ ├── hanoi_5_1920x1080_60.mp4 │ │ │ ├── preview-10.png │ │ │ └── preview-5.png │ │ ├── hello_ranim │ │ │ ├── hello_ranim_1920x1080_60.mp4 │ │ │ └── preview.png │ │ ├── palettes │ │ │ ├── palettes_1920x1080_60.mp4 │ │ │ └── preview.png │ │ ├── perspective_blend │ │ │ ├── perspective_blend_1920x1080_60.mp4 │ │ │ └── preview.png │ │ ├── ranim_logo │ │ │ ├── preview.png │ │ │ └── ranim_logo_1920x1080_60.mp4 │ │ └── selective_sort │ │ │ ├── preview-10.png │ │ │ ├── preview-100.png │ │ │ ├── selective_sort_10_1920x1080_60.mp4 │ │ │ └── selective_sort_1920x1080_60.mp4 │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── github-markdown.css │ ├── ranim.png │ ├── ranim.svg │ └── site.webmanifest └── templates │ ├── 404.html │ ├── anchor-link.html │ ├── doc.html │ ├── examples-page.html │ ├── examples.html │ ├── index.html │ ├── layouts │ ├── base.html │ └── three-col.html │ ├── macros │ ├── code-examples.html │ ├── docs.html │ └── public-draft.html │ ├── page.html │ └── section.html └── xtasks └── xtask-examples ├── .gitignore ├── Cargo.toml ├── README.md ├── release.toml └── src ├── lib.rs └── main.rs /.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/.cargo/config.toml -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/.envrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/.github/workflows/website.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/README.md -------------------------------------------------------------------------------- /assets/Ghostscript_Tiger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/Ghostscript_Tiger.svg -------------------------------------------------------------------------------- /assets/KaTeX_AMS-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/KaTeX_AMS-Regular.ttf -------------------------------------------------------------------------------- /assets/arc.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/arc.mp4 -------------------------------------------------------------------------------- /assets/arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/arc.png -------------------------------------------------------------------------------- /assets/arc_between_points.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/arc_between_points.mp4 -------------------------------------------------------------------------------- /assets/arc_between_points.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/arc_between_points.png -------------------------------------------------------------------------------- /assets/basic.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/basic.mp4 -------------------------------------------------------------------------------- /assets/hello_ranim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/hello_ranim.gif -------------------------------------------------------------------------------- /assets/palettes.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/palettes.mp4 -------------------------------------------------------------------------------- /assets/palettes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/palettes.png -------------------------------------------------------------------------------- /assets/ranim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/ranim.png -------------------------------------------------------------------------------- /assets/ranim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/ranim.svg -------------------------------------------------------------------------------- /assets/ranim_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/ranim_logo.gif -------------------------------------------------------------------------------- /assets/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/test.svg -------------------------------------------------------------------------------- /assets/test1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/test1.svg -------------------------------------------------------------------------------- /assets/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/assets/text.svg -------------------------------------------------------------------------------- /benches/.gitignore: -------------------------------------------------------------------------------- 1 | output-bench/ -------------------------------------------------------------------------------- /benches/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/benches/Cargo.toml -------------------------------------------------------------------------------- /benches/benches/eval.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/benches/benches/eval.rs -------------------------------------------------------------------------------- /benches/benches/extract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/benches/benches/extract.rs -------------------------------------------------------------------------------- /benches/benches/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/benches/benches/render.rs -------------------------------------------------------------------------------- /benches/release.toml: -------------------------------------------------------------------------------- 1 | release = false -------------------------------------------------------------------------------- /benches/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/benches/src/lib.rs -------------------------------------------------------------------------------- /book/.gitignore: -------------------------------------------------------------------------------- 1 | book 2 | -------------------------------------------------------------------------------- /book/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/book.toml -------------------------------------------------------------------------------- /book/mermaid-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/mermaid-init.js -------------------------------------------------------------------------------- /book/mermaid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/mermaid.min.js -------------------------------------------------------------------------------- /book/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/src/SUMMARY.md -------------------------------------------------------------------------------- /book/src/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/src/cli.md -------------------------------------------------------------------------------- /book/src/custom-item.md: -------------------------------------------------------------------------------- 1 | # 自定义物件 2 | -------------------------------------------------------------------------------- /book/src/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/src/getting_started.md -------------------------------------------------------------------------------- /book/src/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/src/timeline.png -------------------------------------------------------------------------------- /book/src/understand/core/README.md: -------------------------------------------------------------------------------- 1 | # 核心概念 2 | -------------------------------------------------------------------------------- /book/src/understand/core/animation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/src/understand/core/animation.md -------------------------------------------------------------------------------- /book/src/understand/core/timeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/src/understand/core/timeline.md -------------------------------------------------------------------------------- /book/theme/book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/book.js -------------------------------------------------------------------------------- /book/theme/css/chrome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/css/chrome.css -------------------------------------------------------------------------------- /book/theme/css/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/css/general.css -------------------------------------------------------------------------------- /book/theme/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/css/print.css -------------------------------------------------------------------------------- /book/theme/css/variables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/css/variables.css -------------------------------------------------------------------------------- /book/theme/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/favicon.png -------------------------------------------------------------------------------- /book/theme/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/favicon.svg -------------------------------------------------------------------------------- /book/theme/fonts/OPEN-SANS-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/OPEN-SANS-LICENSE.txt -------------------------------------------------------------------------------- /book/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/SOURCE-CODE-PRO-LICENSE.txt -------------------------------------------------------------------------------- /book/theme/fonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/fonts.css -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-300.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-300italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-300italic.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-600.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-600italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-600italic.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-700.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-700italic.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-800.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-800italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-800italic.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-italic.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/open-sans-v17-all-charsets-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/open-sans-v17-all-charsets-regular.woff2 -------------------------------------------------------------------------------- /book/theme/fonts/source-code-pro-v11-all-charsets-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/fonts/source-code-pro-v11-all-charsets-500.woff2 -------------------------------------------------------------------------------- /book/theme/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/highlight.css -------------------------------------------------------------------------------- /book/theme/highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/highlight.js -------------------------------------------------------------------------------- /book/theme/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/index.hbs -------------------------------------------------------------------------------- /book/theme/pagetoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/pagetoc.css -------------------------------------------------------------------------------- /book/theme/pagetoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/book/theme/pagetoc.js -------------------------------------------------------------------------------- /ciallo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/ciallo.toml -------------------------------------------------------------------------------- /example-packages/app/.gitignore: -------------------------------------------------------------------------------- 1 | out/ -------------------------------------------------------------------------------- /example-packages/app/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/example-packages/app/Cargo.toml -------------------------------------------------------------------------------- /example-packages/app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/example-packages/app/README.md -------------------------------------------------------------------------------- /example-packages/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/example-packages/app/index.html -------------------------------------------------------------------------------- /example-packages/app/manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/example-packages/app/manual.html -------------------------------------------------------------------------------- /example-packages/app/release.toml: -------------------------------------------------------------------------------- 1 | release = false -------------------------------------------------------------------------------- /example-packages/app/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/example-packages/app/src/lib.rs -------------------------------------------------------------------------------- /example-packages/app/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/example-packages/app/src/main.rs -------------------------------------------------------------------------------- /examples/arc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/arc/README.md -------------------------------------------------------------------------------- /examples/arc/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/arc/lib.rs -------------------------------------------------------------------------------- /examples/arc_between_points/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/arc_between_points/README.md -------------------------------------------------------------------------------- /examples/arc_between_points/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/arc_between_points/lib.rs -------------------------------------------------------------------------------- /examples/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/basic/README.md -------------------------------------------------------------------------------- /examples/basic/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/basic/lib.rs -------------------------------------------------------------------------------- /examples/bubble_sort/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/bubble_sort/lib.rs -------------------------------------------------------------------------------- /examples/extract_vitem_visualize/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/extract_vitem_visualize/lib.rs -------------------------------------------------------------------------------- /examples/getting_started0/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/getting_started0/lib.rs -------------------------------------------------------------------------------- /examples/getting_started1/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/getting_started1/lib.rs -------------------------------------------------------------------------------- /examples/getting_started2/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/getting_started2/lib.rs -------------------------------------------------------------------------------- /examples/hanoi/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/hanoi/lib.rs -------------------------------------------------------------------------------- /examples/hello_ranim/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/hello_ranim/lib.rs -------------------------------------------------------------------------------- /examples/palettes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/palettes/README.md -------------------------------------------------------------------------------- /examples/palettes/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/palettes/lib.rs -------------------------------------------------------------------------------- /examples/perspective_blend/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/perspective_blend/lib.rs -------------------------------------------------------------------------------- /examples/ranim_logo/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/ranim_logo/lib.rs -------------------------------------------------------------------------------- /examples/selective_sort/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/selective_sort/lib.rs -------------------------------------------------------------------------------- /examples/test/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/test/lib.rs -------------------------------------------------------------------------------- /examples/thesis/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/examples/thesis/main.rs -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/flake.nix -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/justfile -------------------------------------------------------------------------------- /notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/notes/README.md -------------------------------------------------------------------------------- /packages/ranim-anims/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-anims/Cargo.toml -------------------------------------------------------------------------------- /packages/ranim-anims/src/creation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-anims/src/creation.rs -------------------------------------------------------------------------------- /packages/ranim-anims/src/fading.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-anims/src/fading.rs -------------------------------------------------------------------------------- /packages/ranim-anims/src/func.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-anims/src/func.rs -------------------------------------------------------------------------------- /packages/ranim-anims/src/lagged.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-anims/src/lagged.rs -------------------------------------------------------------------------------- /packages/ranim-anims/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-anims/src/lib.rs -------------------------------------------------------------------------------- /packages/ranim-anims/src/transform.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-anims/src/transform.rs -------------------------------------------------------------------------------- /packages/ranim-app/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-app/Cargo.toml -------------------------------------------------------------------------------- /packages/ranim-app/src/egui_tools.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-app/src/egui_tools.rs -------------------------------------------------------------------------------- /packages/ranim-app/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-app/src/lib.rs -------------------------------------------------------------------------------- /packages/ranim-app/src/pipeline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-app/src/pipeline.rs -------------------------------------------------------------------------------- /packages/ranim-app/src/shader.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-app/src/shader.wgsl -------------------------------------------------------------------------------- /packages/ranim-app/src/timeline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-app/src/timeline.rs -------------------------------------------------------------------------------- /packages/ranim-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-cli/Cargo.toml -------------------------------------------------------------------------------- /packages/ranim-cli/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-cli/src/cli.rs -------------------------------------------------------------------------------- /packages/ranim-cli/src/cli/preview.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-cli/src/cli/preview.rs -------------------------------------------------------------------------------- /packages/ranim-cli/src/cli/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-cli/src/cli/render.rs -------------------------------------------------------------------------------- /packages/ranim-cli/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-cli/src/lib.rs -------------------------------------------------------------------------------- /packages/ranim-cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-cli/src/main.rs -------------------------------------------------------------------------------- /packages/ranim-cli/src/workspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-cli/src/workspace.rs -------------------------------------------------------------------------------- /packages/ranim-core/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/Cargo.toml -------------------------------------------------------------------------------- /packages/ranim-core/src/animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/animation.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/color/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/color/mod.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/color/palettes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/color/palettes.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/components/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/components/mod.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/components/point.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/components/point.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/components/rgba.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/components/rgba.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/components/vpoint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/components/vpoint.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/components/width.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/components/width.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/core_item/camera_frame.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/core_item/camera_frame.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/core_item/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/core_item/mod.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/core_item/vitem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/core_item/vitem.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/lib.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/store.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/store.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/timeline.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/timeline.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/traits.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/traits.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/utils/bezier.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/utils/bezier.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/utils/math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/utils/math.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/utils/mod.rs -------------------------------------------------------------------------------- /packages/ranim-core/src/utils/rate_functions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-core/src/utils/rate_functions.rs -------------------------------------------------------------------------------- /packages/ranim-items/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/Cargo.toml -------------------------------------------------------------------------------- /packages/ranim-items/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/lib.rs -------------------------------------------------------------------------------- /packages/ranim-items/src/vitem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/vitem.rs -------------------------------------------------------------------------------- /packages/ranim-items/src/vitem/arrow.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/vitem/arrow.rs -------------------------------------------------------------------------------- /packages/ranim-items/src/vitem/geometry.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/vitem/geometry.rs -------------------------------------------------------------------------------- /packages/ranim-items/src/vitem/geometry/arc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/vitem/geometry/arc.rs -------------------------------------------------------------------------------- /packages/ranim-items/src/vitem/geometry/circle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/vitem/geometry/circle.rs -------------------------------------------------------------------------------- /packages/ranim-items/src/vitem/geometry/polygon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/vitem/geometry/polygon.rs -------------------------------------------------------------------------------- /packages/ranim-items/src/vitem/line.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/vitem/line.rs -------------------------------------------------------------------------------- /packages/ranim-items/src/vitem/svg.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/vitem/svg.rs -------------------------------------------------------------------------------- /packages/ranim-items/src/vitem/typst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-items/src/vitem/typst.rs -------------------------------------------------------------------------------- /packages/ranim-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-macros/Cargo.toml -------------------------------------------------------------------------------- /packages/ranim-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-macros/src/lib.rs -------------------------------------------------------------------------------- /packages/ranim-macros/src/scene.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-macros/src/scene.rs -------------------------------------------------------------------------------- /packages/ranim-macros/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-macros/src/utils.rs -------------------------------------------------------------------------------- /packages/ranim-render/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/Cargo.toml -------------------------------------------------------------------------------- /packages/ranim-render/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/lib.rs -------------------------------------------------------------------------------- /packages/ranim-render/src/pipelines/debug.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/pipelines/debug.rs -------------------------------------------------------------------------------- /packages/ranim-render/src/pipelines/map_3d_to_2d.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/pipelines/map_3d_to_2d.rs -------------------------------------------------------------------------------- /packages/ranim-render/src/pipelines/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/pipelines/mod.rs -------------------------------------------------------------------------------- /packages/ranim-render/src/pipelines/shaders/debug.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/pipelines/shaders/debug.wgsl -------------------------------------------------------------------------------- /packages/ranim-render/src/pipelines/shaders/map_3d_to_2d.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/pipelines/shaders/map_3d_to_2d.wgsl -------------------------------------------------------------------------------- /packages/ranim-render/src/pipelines/shaders/vitem.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/pipelines/shaders/vitem.wgsl -------------------------------------------------------------------------------- /packages/ranim-render/src/pipelines/vitem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/pipelines/vitem.rs -------------------------------------------------------------------------------- /packages/ranim-render/src/primitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/primitives.rs -------------------------------------------------------------------------------- /packages/ranim-render/src/primitives/vitem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/primitives/vitem.rs -------------------------------------------------------------------------------- /packages/ranim-render/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/packages/ranim-render/src/utils.rs -------------------------------------------------------------------------------- /puffin-Cargo.lock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/puffin-Cargo.lock.patch -------------------------------------------------------------------------------- /shader/shader.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/shader/shader.wgsl -------------------------------------------------------------------------------- /shader/simple.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/shader/simple.wgsl -------------------------------------------------------------------------------- /shader/vmobject_compute.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/shader/vmobject_compute.wgsl -------------------------------------------------------------------------------- /shader/vmobject_fill.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/shader/vmobject_fill.wgsl -------------------------------------------------------------------------------- /shader/vmobject_stroke.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/shader/vmobject_stroke.wgsl -------------------------------------------------------------------------------- /shader/vpath_compute.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/shader/vpath_compute.wgsl -------------------------------------------------------------------------------- /shader/vpath_fill.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/shader/vpath_fill.wgsl -------------------------------------------------------------------------------- /shader/vpath_stroke.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/shader/vpath_stroke.wgsl -------------------------------------------------------------------------------- /src/cmd/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/src/cmd/mod.rs -------------------------------------------------------------------------------- /src/cmd/render.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/src/cmd/render.rs -------------------------------------------------------------------------------- /src/cmd/render/file_writer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/src/cmd/render/file_writer.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/src/lib.rs -------------------------------------------------------------------------------- /wasm-bindgen-cli.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/wasm-bindgen-cli.nix -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/config.toml -------------------------------------------------------------------------------- /website/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/_index.md -------------------------------------------------------------------------------- /website/content/examples/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/_index.md -------------------------------------------------------------------------------- /website/content/examples/arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/arc.md -------------------------------------------------------------------------------- /website/content/examples/arc_between_points.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/arc_between_points.md -------------------------------------------------------------------------------- /website/content/examples/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/basic.md -------------------------------------------------------------------------------- /website/content/examples/bubble_sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/bubble_sort.md -------------------------------------------------------------------------------- /website/content/examples/extract_vitem_visualize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/extract_vitem_visualize.md -------------------------------------------------------------------------------- /website/content/examples/hanoi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/hanoi.md -------------------------------------------------------------------------------- /website/content/examples/hello_ranim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/hello_ranim.md -------------------------------------------------------------------------------- /website/content/examples/palettes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/palettes.md -------------------------------------------------------------------------------- /website/content/examples/perspective_blend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/perspective_blend.md -------------------------------------------------------------------------------- /website/content/examples/ranim_logo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/ranim_logo.md -------------------------------------------------------------------------------- /website/content/examples/selective_sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/content/examples/selective_sort.md -------------------------------------------------------------------------------- /website/data/arc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/arc.toml -------------------------------------------------------------------------------- /website/data/arc_between_points.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/arc_between_points.toml -------------------------------------------------------------------------------- /website/data/basic.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/basic.toml -------------------------------------------------------------------------------- /website/data/bubble_sort.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/bubble_sort.toml -------------------------------------------------------------------------------- /website/data/extract_vitem_visualize.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/extract_vitem_visualize.toml -------------------------------------------------------------------------------- /website/data/getting_started0.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/getting_started0.toml -------------------------------------------------------------------------------- /website/data/getting_started1.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/getting_started1.toml -------------------------------------------------------------------------------- /website/data/getting_started2.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/getting_started2.toml -------------------------------------------------------------------------------- /website/data/hanoi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/hanoi.toml -------------------------------------------------------------------------------- /website/data/hello_ranim.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/hello_ranim.toml -------------------------------------------------------------------------------- /website/data/palettes.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/palettes.toml -------------------------------------------------------------------------------- /website/data/perspective_blend.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/perspective_blend.toml -------------------------------------------------------------------------------- /website/data/ranim_logo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/ranim_logo.toml -------------------------------------------------------------------------------- /website/data/selective_sort.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/selective_sort.toml -------------------------------------------------------------------------------- /website/data/test.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/data/test.toml -------------------------------------------------------------------------------- /website/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/_mixins.scss -------------------------------------------------------------------------------- /website/sass/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/_vars.scss -------------------------------------------------------------------------------- /website/sass/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/components/_card.scss -------------------------------------------------------------------------------- /website/sass/components/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/components/_container.scss -------------------------------------------------------------------------------- /website/sass/components/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/components/_layout.scss -------------------------------------------------------------------------------- /website/sass/components/_nav-btn.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/components/_nav-btn.scss -------------------------------------------------------------------------------- /website/sass/components/_outline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/components/_outline.scss -------------------------------------------------------------------------------- /website/sass/components/_syntax-theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/components/_syntax-theme.scss -------------------------------------------------------------------------------- /website/sass/components/_zola-anchor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/components/_zola-anchor.scss -------------------------------------------------------------------------------- /website/sass/elements/_body.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/elements/_body.scss -------------------------------------------------------------------------------- /website/sass/elements/_codeblock.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/elements/_codeblock.scss -------------------------------------------------------------------------------- /website/sass/elements/_html.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/elements/_html.scss -------------------------------------------------------------------------------- /website/sass/elements/_tree-menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/elements/_tree-menu.scss -------------------------------------------------------------------------------- /website/sass/elements/_video.scss: -------------------------------------------------------------------------------- 1 | video { 2 | max-width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /website/sass/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/sass/index.scss -------------------------------------------------------------------------------- /website/static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /website/static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /website/static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/apple-touch-icon.png -------------------------------------------------------------------------------- /website/static/examples/arc/arc_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/arc/arc_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/arc/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/arc/preview.png -------------------------------------------------------------------------------- /website/static/examples/arc_between_points/arc_between_points_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/arc_between_points/arc_between_points_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/arc_between_points/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/arc_between_points/preview.png -------------------------------------------------------------------------------- /website/static/examples/basic/basic_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/basic/basic_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/basic/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/basic/preview.png -------------------------------------------------------------------------------- /website/static/examples/bubble_sort/bubble_sort_10_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/bubble_sort/bubble_sort_10_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/bubble_sort/bubble_sort_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/bubble_sort/bubble_sort_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/bubble_sort/preview-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/bubble_sort/preview-10.png -------------------------------------------------------------------------------- /website/static/examples/bubble_sort/preview-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/bubble_sort/preview-100.png -------------------------------------------------------------------------------- /website/static/examples/extract_vitem_visualize/extract_vitem_visualize_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/extract_vitem_visualize/extract_vitem_visualize_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/extract_vitem_visualize/preview-hello_ranim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/extract_vitem_visualize/preview-hello_ranim.png -------------------------------------------------------------------------------- /website/static/examples/extract_vitem_visualize/preview-ranim_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/extract_vitem_visualize/preview-ranim_text.png -------------------------------------------------------------------------------- /website/static/examples/extract_vitem_visualize/ranim_text_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/extract_vitem_visualize/ranim_text_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/getting_started0/getting_started0_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/getting_started0/getting_started0_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/getting_started1/getting_started1_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/getting_started1/getting_started1_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/getting_started2/getting_started2_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/getting_started2/getting_started2_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/hanoi/hanoi_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/hanoi/hanoi_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/hanoi/hanoi_5_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/hanoi/hanoi_5_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/hanoi/preview-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/hanoi/preview-10.png -------------------------------------------------------------------------------- /website/static/examples/hanoi/preview-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/hanoi/preview-5.png -------------------------------------------------------------------------------- /website/static/examples/hello_ranim/hello_ranim_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/hello_ranim/hello_ranim_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/hello_ranim/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/hello_ranim/preview.png -------------------------------------------------------------------------------- /website/static/examples/palettes/palettes_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/palettes/palettes_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/palettes/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/palettes/preview.png -------------------------------------------------------------------------------- /website/static/examples/perspective_blend/perspective_blend_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/perspective_blend/perspective_blend_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/perspective_blend/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/perspective_blend/preview.png -------------------------------------------------------------------------------- /website/static/examples/ranim_logo/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/ranim_logo/preview.png -------------------------------------------------------------------------------- /website/static/examples/ranim_logo/ranim_logo_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/ranim_logo/ranim_logo_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/selective_sort/preview-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/selective_sort/preview-10.png -------------------------------------------------------------------------------- /website/static/examples/selective_sort/preview-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/selective_sort/preview-100.png -------------------------------------------------------------------------------- /website/static/examples/selective_sort/selective_sort_10_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/selective_sort/selective_sort_10_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/examples/selective_sort/selective_sort_1920x1080_60.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/examples/selective_sort/selective_sort_1920x1080_60.mp4 -------------------------------------------------------------------------------- /website/static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/favicon-16x16.png -------------------------------------------------------------------------------- /website/static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/favicon-32x32.png -------------------------------------------------------------------------------- /website/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/favicon.ico -------------------------------------------------------------------------------- /website/static/github-markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/github-markdown.css -------------------------------------------------------------------------------- /website/static/ranim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/ranim.png -------------------------------------------------------------------------------- /website/static/ranim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/ranim.svg -------------------------------------------------------------------------------- /website/static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/static/site.webmanifest -------------------------------------------------------------------------------- /website/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/404.html -------------------------------------------------------------------------------- /website/templates/anchor-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/anchor-link.html -------------------------------------------------------------------------------- /website/templates/doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/doc.html -------------------------------------------------------------------------------- /website/templates/examples-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/examples-page.html -------------------------------------------------------------------------------- /website/templates/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/examples.html -------------------------------------------------------------------------------- /website/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/index.html -------------------------------------------------------------------------------- /website/templates/layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/layouts/base.html -------------------------------------------------------------------------------- /website/templates/layouts/three-col.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/layouts/three-col.html -------------------------------------------------------------------------------- /website/templates/macros/code-examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/macros/code-examples.html -------------------------------------------------------------------------------- /website/templates/macros/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/macros/docs.html -------------------------------------------------------------------------------- /website/templates/macros/public-draft.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/macros/public-draft.html -------------------------------------------------------------------------------- /website/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/page.html -------------------------------------------------------------------------------- /website/templates/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/website/templates/section.html -------------------------------------------------------------------------------- /xtasks/xtask-examples/.gitignore: -------------------------------------------------------------------------------- 1 | tmp/ -------------------------------------------------------------------------------- /xtasks/xtask-examples/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/xtasks/xtask-examples/Cargo.toml -------------------------------------------------------------------------------- /xtasks/xtask-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/xtasks/xtask-examples/README.md -------------------------------------------------------------------------------- /xtasks/xtask-examples/release.toml: -------------------------------------------------------------------------------- 1 | release = false -------------------------------------------------------------------------------- /xtasks/xtask-examples/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/xtasks/xtask-examples/src/lib.rs -------------------------------------------------------------------------------- /xtasks/xtask-examples/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzurIce/ranim/HEAD/xtasks/xtask-examples/src/main.rs --------------------------------------------------------------------------------