Mscene
A Python library for creating science animation with Manim in Google Colab.
Install / Use
/learn @curiouswalk/MsceneREADME
Mscene
A Python library for creating science animation with Manim in Google Colab. ✨ mscene.curiouswalk.com
Manim is an animation engine designed to program precise animations for science videos. Google Colab is a hosted Jupyter Notebook service that requires no setup and provides free access to computing resources, including GPUs and TPUs.
Quickstart
Manim in Colab
Visit colab.new to create a new Colab notebook.
Installation
%pip install -q mscene
import mscene
%mscene -l manim
from mscene.manim import *
Example Scene
%%manim -qm ManimScene
class ManimScene(Scene):
def construct(self):
banner = ManimBanner()
self.play(banner.create())
self.play(banner.expand())
self.wait(1.5)
Mscene Plugins
Plugins extend Manim with additional features.
Adding Plugins
import mscene
%mscene plugins
from mscene.plugins import *
Example Scene
%%manim -qm FractalScene
class FractalScene(Scene):
def construct(self):
ks = KochSnowflake(level=2)
self.add(ks)
self.play(ks.animate.next_level())
self.wait(1.5)
self.play(ks.animate.prev_level())
self.wait(1.5)
Related Skills
node-connect
350.8kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
110.4kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
350.8kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
350.8kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。

