AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261

    Manimce Best Practices

    Trigger when: (1) User mentions "manim" or "Manim Community" or "ManimCE", (2) Code contains from manim import , (3) User runs manim CLI commands, (4) Working with Scene, MathTex, Create(), or ManimCE specific classes. Best practices for Manim Community Edition the community maintained Python animation engine. Covers Scene structure, animations, LaTeX/MathTex, 3D with ThreeDScene, camera control, styling, and CLI usage. NOT for ManimGL/3b1b version (which uses manimlib imports and manimgl CLI).

    Скиллы для разработки#GitHub#adithya-s-k/manim_skill#skills.sh
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    2

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add adithya-s-k/manim_skill --skill manimce-best-practices
    Скачать ZIP
    Версия
    1.0.0+cef045011722
    Автор
    Владимир Ломтев
    Репозиторий
    adithya-s-k/manim_skill
    GitHub: adithya-s-k/manim_skill

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    How to use

    Read individual rule files for detailed explanations and code examples:

    Core Concepts

    • rules/scenes.md - Scene structure, construct method, and scene types
    • rules/mobjects.md - Mobject types, VMobject, Groups, and positioning
    • rules/animations.md - Animation classes, playing animations, and timing

    Creation & Transformation

    • rules/creation-animations.md - Create, Write, FadeIn, DrawBorderThenFill
    • rules/transform-animations.md - Transform, ReplacementTransform, morphing
    • rules/animation-groups.md - AnimationGroup, LaggedStart, Succession

    Text & Math

    • rules/text.md - Text mobjects, fonts, and styling
    • rules/latex.md - MathTex, Tex, LaTeX rendering, and coloring formulas
    • rules/text-animations.md - Write, AddTextLetterByLetter, TypeWithCursor

    Styling & Appearance

    • rules/colors.md - Color constants, gradients, and color manipulation
    • rules/styling.md - Fill, stroke, opacity, and visual properties

    Positioning & Layout

    • rules/positioning.md - move_to, next_to, align_to, shift methods
    • rules/grouping.md - VGroup, Group, arrange, and layout patterns

    Coordinate Systems & Graphing

    • rules/axes.md - Axes, NumberPlane, coordinate systems
    • rules/graphing.md - Plotting functions, parametric curves
    • rules/3d.md - ThreeDScene, 3D axes, surfaces, camera orientation

    Animation Control

    • rules/timing.md - Rate functions, easing, run_time, lag_ratio
    • rules/updaters.md - Updaters, ValueTracker, dynamic animations
    • rules/camera.md - MovingCameraScene, zoom, pan, frame manipulation

    Configuration & CLI

    • rules/cli.md - Command-line interface, rendering options, quality flags
    • rules/config.md - Configuration system, manim.cfg, settings

    Shapes & Geometry

    • rules/shapes.md - Circle, Square, Rectangle, Polygon, and geometric primitives
    • rules/lines.md - Line, Arrow, Vector, DashedLine, and connectors

    Working Examples

    Complete, tested example files demonstrating common patterns:

    • examples/basic_animations.py - Shape creation, text, lagged animations, path movement
    • examples/math_visualization.py - LaTeX equations, color-coded math, derivations
    • examples/updater_patterns.py - ValueTracker, dynamic animations, physics simulations
    • examples/graph_plotting.py - Axes, functions, areas, Riemann sums, polar plots
    • examples/3d_visualization.py - ThreeDScene, surfaces, 3D camera, parametric curves

    Scene Templates

    Copy and modify these templates to start new projects:

    • templates/basic_scene.py - Standard 2D scene template
    • templates/camera_scene.py - MovingCameraScene with zoom/pan
    • templates/threed_scene.py - 3D scene with surfaces and camera rotation

    Quick Reference

    Basic Scene Structure

    from manim import *
    
    class MyScene(Scene):
        def construct(self):
            # Create mobjects
            circle = Circle()
    
            # Add to scene (static)
            self.add(circle)
    
            # Or animate
            self.play(Create(circle))
    
            # Wait
            self.wait(1)
    

    Render Command

    ## Basic render with preview
    manim -pql scene.py MyScene
    
    ## Quality flags: -ql (low), -qm (medium), -qh (high), -qk (4k)
    manim -pqh scene.py MyScene
    

    Key Differences from 3b1b/ManimGL

    Feature Manim Community 3b1b/ManimGL
    Import from manim import * from manimlib import *
    CLI manim manimgl
    Math text MathTex(r"\pi") Tex(R"\pi")
    Scene Scene InteractiveScene
    Package manim (PyPI) manimgl (PyPI)

    Jupyter Notebook Support

    Use the %%manim cell magic:

    %%manim -qm MyScene
    class MyScene(Scene):
        def construct(self):
            self.play(Create(Circle()))
    

    Common Pitfalls to Avoid

    1. Version confusion - Ensure you're using manim (Community), not manimgl (3b1b version)
    2. Check imports - from manim import * is ManimCE; from manimlib import * is ManimGL
    3. Outdated tutorials - Video tutorials may be outdated; prefer official documentation
    4. manimpango issues - If text rendering fails, check manimpango installation requirements
    5. PATH issues (Windows) - If manim command not found, use python -m manim or check PATH

    Installation

    ## Install Manim Community
    pip install manim
    
    ## Check installation
    manim checkhealth
    

    Useful Commands

    manim -pql scene.py Scene    # Preview low quality (development)
    manim -pqh scene.py Scene    # Preview high quality
    manim --format gif scene.py  # Output as GIF
    manim checkhealth            # Verify installation
    manim plugins -l             # List plugins
    

    Требования и возможности

    Источник пакета
    https://github.com/adithya-s-k/manim_skill/tree/cef045011722d285692e3381d12d4d637da56e18/skills/manimce-best-practices

    Файлы версии

    ПутьРазмерSHA256
    LICENSE.txt1100c02371d11efe3579...
    SKILL.md5926ae09751ec9e3e938...
    examples/3d_visualization.py10016214dcd11b09b8302...
    examples/attention/__init__.py756c13b542eb4c6670...
    examples/attention/helpers.py1448982014263adf85db6...

    Частые вопросы

    Как установить Manimce Best Practices?
    Используйте команду npx skills add adithya-s-k/manim_skill --skill manimce-best-practices или скачайте ZIP-архив.
    Можно ли скачать Manimce Best Practices бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    React DoctorUse when finishing a feature, fixing a bug, before committing React code, or when the user types `/doctor`, asks to scan, triage, or clean up React diagnostics. Covers lint, accessibility, bundle size, architecture. Includes a regression check and a full local-triage workflow that fetches the canonical playbook.Argent Android Emulator SetupSet up and connect to an Android emulator using argent MCP tools. Use when starting a new session on Android, booting an emulator, getting a device serial, or before any UI interaction task.Fireworks Tech GraphCreate technical diagrams such as software architecture, data flow, flowcharts, sequence diagrams, C4 reviews, cloud deployments, event streams, observability investigations, agent/memory systems, UML, ER, network topology, timelines, and technical concept maps, then export SVG, PNG, focused semantic SVG-to-GIF motion, or offline interactive HTML. Treat direct requests such as "Generate a GIF", "生成 GIF", or "制作 GIF" as motion requests, and use this skill when the user asks to visualize a system or engineering concept. Do not use for photos, raster artwork, or quantitative data charts.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add adithya-s-k/manim_skill --skill manimce-best-practices
    Скачать ZIP
    Версия
    1.0.0+cef045011722
    Автор
    Владимир Ломтев
    Репозиторий
    adithya-s-k/manim_skill
    GitHub: adithya-s-k/manim_skill
    Modern Web GuidanceSearch tool for modern web development best practices. MANDATORY: Execute FIRST for all HTML/CSS and clientside JS tasks. Do NOT skip — web APIs evolve rapidly and training weights contain obsolete patterns.
    Manimce Best Practices — Скилл для ИИ-агентов | AI Рассвет