mathlikeanim-rs

Crates.iomathlikeanim-rs
lib.rsmathlikeanim-rs
version0.13.0
sourcesrc
created_at2024-02-04 21:05:02.88928
updated_at2024-11-30 18:55:05.163836
descriptionA Rust library for creating mathematical animations
homepage
repositoryhttps://github.com/MathItYT/mathlikeanim-rs
max_upload_size
id1126659
size592,840
Benjamín Ubilla (MathItYT)

documentation

README

MathLikeAnim-rs

MathLikeAnim-rs

This is an animation library written in Rust, widely inspired by Manim and, unlike Manim, it allows interactivity thanks to WebAssembly, JavaScript and the web.

Features

  • Interactivity.

  • Basic shapes.

  • Function plotting.

  • Animations in HTML Canvas and SVG.

  • Text rendering.

  • LaTeX rendering.

  • 3D rendering.

  • Browser support.

  • Python support (coming soon).

How to install it?

If you want to start creating mathematical and interactive animations, you can install it by running:

npm i mathlikeanim-rs

How to use it in the browser?

You can embed the library in your HTML file by adding a script tag, and don't forget to include your HTML Canvas for raster animations or DIV container for SVG animations!

<script type="module">
    import initWasm from './node_modules/mathlikeanim-rs/index.js';

    initWasm().then((wasm) => {
        ...
    });
</script>

Development

If you want to contribute to this project, you can clone a fork of this repository and work with the Rust codebase.

By the moment we don't have any tests, so your contributions are welcome!

Documentation

You can find the documentation of this project in https://mathlikeanim-rs.vercel.app/.

Commit count: 134

cargo fmt