Animate highlighted blocks of code in Manim
Project description
Manim-Code-Blocks
Manim-Code-Blocks
is a library for Manim that allows animating blocks of code in Manim videos and scenes.
Example Usage
from manim import *
from manim_code_blocks import *
class Main(Scene):
def construct(self):
java = CodeBlock(
"""
public class Main {
public static void main(String[] args) {
System.out.println("Hello world");
}
}
""",
language = Java
)
self.play(*java.create(run_time = 3))
Outputs:
Problems & Limitations
Limited Language Support
Currently only the following languages are supported for syntax highlighting:
- C
- C#
- C++
- Java
- JavaScript
- Lua
- Go
- Python
- Rust
- TypeScript
To add language support, submit a pull request to to the Tokenize-All module.
Unintelligent Highlighting
Manim-Code-Block
uses syntax highlighting, not semantic highlighting. The source code is only tokenized, not parsed, and as such accurate highlighting can be impossible for certain circumstances. Syntax highlighting is provided by the Tokenize-All module, which lacks thorough language support. Additionally many languages have not been thoroughly tested enough for accurate highlighting. If you find an issue in your syntax highlighting, please report it to the issues thread.
Lack of Themes
Currently the only theme supported out of the box is the One Dark Pro theme from Atom and used in Visual Studio Code. Adding a custom theme is possible (and simple), however currently this is the only theme supported out of the box.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file manim_code_blocks-1.0.13.tar.gz
.
File metadata
- Download URL: manim_code_blocks-1.0.13.tar.gz
- Upload date:
- Size: 6.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddd389b5d425c81f9a6358ac266589e6e5d7be4001662af6f1bc9154927fa534 |
|
MD5 | cd07af6aa0412ca54936bc3e054a55f3 |
|
BLAKE2b-256 | 91805d088f732d011cbf9a19b576c0aeaf095b599cfee988e2f88a699119cc7d |
File details
Details for the file manim_code_blocks-1.0.13-py3-none-any.whl
.
File metadata
- Download URL: manim_code_blocks-1.0.13-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98c1a135f7ea5aa010806c7d1ff8d84e7378e42365a232db0de81ce344a4f336 |
|
MD5 | 0acc813dccb4819349ac2b6f00f4d6f0 |
|
BLAKE2b-256 | 2975fdc551b64d2951c7f98f0f65d41b32048ee49daf9715eb4cf0ae964182b3 |