Manim packages

Ubication

All packages of this version are in:

big_ol_pile_of_manim_imports.py
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
"""
I won't pretend like this is best practice, by in creating animations for a video,
it can be very nice to simply have all of the Mobjects, Animations, Scenes, etc.
of manim available without having to worry about what namespace they come from.

Rather than having a large pile of "from <module> import *" at the top of every such
script, the intent of this file is to make it so that one can just include
"from big_ol_pile_of_manim_imports import *".  The effects of adding more modules
or refactoring the library on current or older scene scripts should be entirely
addressible by changing this file.

Note: One should NOT import from this file for main library code, it is meant only
as a convenience for scripts creating scenes for videos.
"""


from manimlib.constants import *

from manimlib.animation.animation import *
from manimlib.animation.composition import *
from manimlib.animation.creation import *
from manimlib.animation.indication import *
from manimlib.animation.movement import *
from manimlib.animation.numbers import *
from manimlib.animation.rotation import *
from manimlib.animation.specialized import *
from manimlib.animation.transform import *
from manimlib.animation.update import *

from manimlib.camera.camera import *
from manimlib.camera.mapping_camera import *
from manimlib.camera.moving_camera import *
from manimlib.camera.three_d_camera import *

from manimlib.continual_animation.continual_animation import *
from manimlib.continual_animation.from_animation import *
from manimlib.continual_animation.numbers import *
from manimlib.continual_animation.update import *

from manimlib.mobject.coordinate_systems import *
from manimlib.mobject.frame import *
from manimlib.mobject.functions import *
from manimlib.mobject.geometry import *
from manimlib.mobject.matrix import *
from manimlib.mobject.mobject import *
from manimlib.mobject.number_line import *
from manimlib.mobject.numbers import *
from manimlib.mobject.probability import *
from manimlib.mobject.shape_matchers import *
from manimlib.mobject.svg.brace import *
from manimlib.mobject.svg.drawings import *
from manimlib.mobject.svg.svg_mobject import *
from manimlib.mobject.svg.tex_mobject import *
from manimlib.mobject.three_d_utils import *
from manimlib.mobject.three_dimensions import *
from manimlib.mobject.types.image_mobject import *
from manimlib.mobject.types.point_cloud_mobject import *
from manimlib.mobject.types.vectorized_mobject import *
from manimlib.mobject.updater import *
from manimlib.mobject.value_tracker import *

from manimlib.for_3b1b_videos.common_scenes import *
from manimlib.for_3b1b_videos.pi_creature import *
from manimlib.for_3b1b_videos.pi_creature_animations import *
from manimlib.for_3b1b_videos.pi_creature_scene import *

from manimlib.once_useful_constructs.arithmetic import *
from manimlib.once_useful_constructs.combinatorics import *
from manimlib.once_useful_constructs.complex_transformation_scene import *
from manimlib.once_useful_constructs.counting import *
from manimlib.once_useful_constructs.fractals import *
from manimlib.once_useful_constructs.graph_theory import *
from manimlib.once_useful_constructs.light import *

from manimlib.scene.graph_scene import *
from manimlib.scene.moving_camera_scene import *
from manimlib.scene.reconfigurable_scene import *
from manimlib.scene.scene import *
from manimlib.scene.sample_space_scene import *
from manimlib.scene.graph_scene import *
from manimlib.scene.scene_from_video import *
from manimlib.scene.three_d_scene import *
from manimlib.scene.vector_space_scene import *
from manimlib.scene.zoomed_scene import *

from manimlib.utils.bezier import *
from manimlib.utils.color import *
from manimlib.utils.config_ops import *
from manimlib.utils.images import *
from manimlib.utils.iterables import *
from manimlib.utils.file_ops import *
from manimlib.utils.paths import *
from manimlib.utils.rate_functions import *
from manimlib.utils.simple_functions import *
from manimlib.utils.sounds import *
from manimlib.utils.space_ops import *
from manimlib.utils.strings import *

# Non manim libraries that are also nice to have without thinking

import inspect
import itertools as it
import numpy as np
import operator as op
import os
import random
import re
import string
import sys
import math

from PIL import Image
from colour import Color

Tree

The files that we really need are:

  • big_ol_pile_of_manim_imports.py

  • manim.py

  • stage_scenes.py

  • manimlib/

The rest files we can delete it.

.
├── big_ol_pile_of_manim_imports.py
├── manim.py
├── stage_scenes.py
├── manimlib
│   ├── animation
│   │   ├── animation.py
│   │   ├── composition.py
│   │   ├── creation.py
│   │   ├── indication.py
│   │   ├── movement.py
│   │   ├── numbers.py
│   │   ├── rotation.py
│   │   ├── specialized.py
│   │   ├── transform.py
│   │   └── update.py
│   ├── camera
│   │   ├── camera.py
│   │   ├── mapping_camera.py
│   │   ├── moving_camera.py
│   │   ├── multi_camera.py
│   │   └── three_d_camera.py
│   ├── config.py
│   ├── constants.py
│   ├── container
│   │   └── container.py
│   ├── continual_animation
│   │   ├── continual_animation.py
│   │   ├── from_animation.py
│   │   ├── numbers.py
│   │   └── update.py
│   ├── ctex_template.tex
│   ├── extract_scene.py
│   ├── files
│   │   ├── Bubbles_speech.svg
│   │   ├── Bubbles_thought.svg
│   │   └── PiCreatures_plain.svg
│   ├── for_3b1b_videos
│   │   ├── common_scenes.py
│   │   ├── pi_class.py
│   │   ├── pi_creature_animations.py
│   │   ├── pi_creature.py
│   │   └── pi_creature_scene.py
│   ├── media_dir.txt
│   ├── mobject
│   │   ├── coordinate_systems.py
│   │   ├── frame.py
│   │   ├── functions.py
│   │   ├── geometry.py
│   │   ├── matrix.py
│   │   ├── mobject.py
│   │   ├── number_line.py
│   │   ├── numbers.py
│   │   ├── probability.py
│   │   ├── shape_matchers.py
│   │   ├── svg
│   │   │   ├── brace.py
│   │   │   ├── drawings.py
│   │   │   ├── svg_mobject.py
│   │   │   └── tex_mobject.py
│   │   ├── three_dimensions.py
│   │   ├── three_d_shading_utils.py
│   │   ├── three_d_utils.py
│   │   ├── types
│   │   │   ├── image_mobject.py
│   │   │   ├── point_cloud_mobject.py
│   │   │   └── vectorized_mobject.py
│   │   ├── updater.py
│   │   └── value_tracker.py
│   ├── once_useful_constructs
│   │   ├── arithmetic.py
│   │   ├── combinatorics.py
│   │   ├── complex_transformation_scene.py
│   │   ├── counting.py
│   │   ├── fractals.py
│   │   ├── graph_theory.py
│   │   ├── light.py
│   │   ├── matrix_multiplication.py
│   │   ├── NOTE.md
│   │   └── region.py
│   ├── scene
│   │   ├── graph_scene.py
│   │   ├── media_dir.txt
│   │   ├── moving_camera_scene.py
│   │   ├── reconfigurable_scene.py
│   │   ├── sample_space_scene.py
│   │   ├── scene_file_writer.py
│   │   ├── scene_from_video.py
│   │   ├── scene.py
│   │   ├── three_d_scene.py
│   │   ├── vector_space_scene.py
│   │   └── zoomed_scene.py
│   ├── stream_starter.py
│   ├── tex_template.tex
│   └── utils
│       ├── bezier.py
│       ├── color.py
│       ├── config_ops.py
│       ├── file_ops.py
│       ├── images.py
│       ├── iterables.py
│       ├── paths.py
│       ├── rate_functions.py
│       ├── simple_functions.py
│       ├── sounds.py
│       ├── space_ops.py
│       ├── strings.py
│       └── tex_file_writing.py
├── README.md          # <- Don't needed
├── requirements.txt   # <- Don't needed
├── Dockerfile         # <- Don't needed
├── example_scenes.py  # <- Don't needed
└── LICENSE            # <- Don't needed

You can delete README.md, requirements.txt, Dockerfile, example_scenes.py and LICENSE.