mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
385 lines
11 KiB
Python
385 lines
11 KiB
Python
import numpy as np
|
|
import math
|
|
|
|
from manimlib.constants import *
|
|
from manimlib.animation.animation import Animation
|
|
from manimlib.animation.movement import Homotopy
|
|
from manimlib.animation.composition import AnimationGroup
|
|
from manimlib.animation.composition import Succession
|
|
from manimlib.animation.creation import ShowCreation
|
|
from manimlib.animation.creation import ShowPartial
|
|
from manimlib.animation.fading import FadeOut
|
|
from manimlib.animation.fading import FadeIn
|
|
from manimlib.animation.transform import Transform
|
|
from manimlib.mobject.types.vectorized_mobject import VMobject
|
|
from manimlib.mobject.geometry import Circle
|
|
from manimlib.mobject.geometry import Dot
|
|
from manimlib.mobject.shape_matchers import SurroundingRectangle
|
|
from manimlib.mobject.shape_matchers import Underline
|
|
from manimlib.mobject.types.vectorized_mobject import VGroup
|
|
from manimlib.mobject.geometry import Line
|
|
from manimlib.utils.bezier import interpolate
|
|
from manimlib.utils.config_ops import digest_config
|
|
from manimlib.utils.rate_functions import there_and_back
|
|
from manimlib.utils.rate_functions import wiggle
|
|
from manimlib.utils.rate_functions import smooth
|
|
from manimlib.utils.rate_functions import squish_rate_func
|
|
|
|
|
|
class FocusOn(Transform):
|
|
CONFIG = {
|
|
"opacity": 0.2,
|
|
"color": GREY,
|
|
"run_time": 2,
|
|
"remover": True,
|
|
}
|
|
|
|
def __init__(self, focus_point, **kwargs):
|
|
self.focus_point = focus_point
|
|
# Initialize with blank mobject, while create_target
|
|
# and create_starting_mobject handle the meat
|
|
super().__init__(VMobject(), **kwargs)
|
|
|
|
def create_target(self):
|
|
little_dot = Dot(radius=0)
|
|
little_dot.set_fill(self.color, opacity=self.opacity)
|
|
little_dot.add_updater(
|
|
lambda d: d.move_to(self.focus_point)
|
|
)
|
|
return little_dot
|
|
|
|
def create_starting_mobject(self):
|
|
return Dot(
|
|
radius=FRAME_X_RADIUS + FRAME_Y_RADIUS,
|
|
stroke_width=0,
|
|
fill_color=self.color,
|
|
fill_opacity=0,
|
|
)
|
|
|
|
|
|
class Indicate(Transform):
|
|
CONFIG = {
|
|
"rate_func": there_and_back,
|
|
"scale_factor": 1.2,
|
|
"color": YELLOW,
|
|
}
|
|
|
|
def create_target(self):
|
|
target = self.mobject.copy()
|
|
target.scale(self.scale_factor)
|
|
target.set_color(self.color)
|
|
return target
|
|
|
|
|
|
class Flash(AnimationGroup):
|
|
CONFIG = {
|
|
"line_length": 0.2,
|
|
"num_lines": 12,
|
|
"flash_radius": 0.3,
|
|
"line_stroke_width": 3,
|
|
"run_time": 1,
|
|
}
|
|
|
|
def __init__(self, point, color=YELLOW, **kwargs):
|
|
self.point = point
|
|
self.color = color
|
|
digest_config(self, kwargs)
|
|
self.lines = self.create_lines()
|
|
animations = self.create_line_anims()
|
|
super().__init__(
|
|
*animations,
|
|
group=self.lines,
|
|
**kwargs,
|
|
)
|
|
|
|
def create_lines(self):
|
|
lines = VGroup()
|
|
for angle in np.arange(0, TAU, TAU / self.num_lines):
|
|
line = Line(ORIGIN, self.line_length * RIGHT)
|
|
line.shift((self.flash_radius - self.line_length) * RIGHT)
|
|
line.rotate(angle, about_point=ORIGIN)
|
|
lines.add(line)
|
|
lines.set_stroke(
|
|
color=self.color,
|
|
width=self.line_stroke_width
|
|
)
|
|
lines.add_updater(lambda l: l.move_to(self.point))
|
|
return lines
|
|
|
|
def create_line_anims(self):
|
|
return [
|
|
ShowCreationThenDestruction(line)
|
|
for line in self.lines
|
|
]
|
|
|
|
|
|
class CircleIndicate(Indicate):
|
|
CONFIG = {
|
|
"rate_func": there_and_back,
|
|
"remover": True,
|
|
"circle_config": {
|
|
"color": YELLOW,
|
|
},
|
|
}
|
|
|
|
def __init__(self, mobject, **kwargs):
|
|
digest_config(self, kwargs)
|
|
circle = self.get_circle(mobject)
|
|
super().__init__(circle, **kwargs)
|
|
|
|
def get_circle(self, mobject):
|
|
circle = Circle(**self.circle_config)
|
|
circle.add_updater(lambda c: c.surround(mobject))
|
|
return circle
|
|
|
|
def interpolate_mobject(self, alpha):
|
|
super().interpolate_mobject(alpha)
|
|
self.mobject.set_stroke(opacity=alpha)
|
|
|
|
|
|
class ShowPassingFlash(ShowPartial):
|
|
CONFIG = {
|
|
"time_width": 0.1,
|
|
"remover": True,
|
|
}
|
|
|
|
def get_bounds(self, alpha):
|
|
tw = self.time_width
|
|
upper = interpolate(0, 1 + tw, alpha)
|
|
lower = upper - tw
|
|
upper = min(upper, 1)
|
|
lower = max(lower, 0)
|
|
return (lower, upper)
|
|
|
|
def finish(self):
|
|
super().finish()
|
|
for submob, start in self.get_all_families_zipped():
|
|
submob.pointwise_become_partial(start, 0, 1)
|
|
|
|
|
|
class VShowPassingFlash(Animation):
|
|
CONFIG = {
|
|
"time_width": 0.3,
|
|
"taper_width": 0.02,
|
|
"remover": True,
|
|
}
|
|
|
|
def begin(self):
|
|
self.mobject.align_stroke_width_data_to_points()
|
|
# Compute an array of stroke widths for each submobject
|
|
# which tapers out at either end
|
|
self.submob_to_anchor_widths = dict()
|
|
for sm in self.mobject.get_family():
|
|
original_widths = sm.get_stroke_widths()
|
|
anchor_widths = np.array([*original_widths[0::3], original_widths[-1]])
|
|
|
|
def taper_kernel(x):
|
|
if x < self.taper_width:
|
|
return x
|
|
elif x > 1 - self.taper_width:
|
|
return 1.0 - x
|
|
return 1.0
|
|
|
|
taper_array = list(map(taper_kernel, np.linspace(0, 1, len(anchor_widths))))
|
|
self.submob_to_anchor_widths[hash(sm)] = anchor_widths * taper_array
|
|
super().begin()
|
|
|
|
def interpolate_submobject(self, submobject, starting_sumobject, alpha):
|
|
anchor_widths = self.submob_to_anchor_widths[hash(submobject)]
|
|
# Create a gaussian such that 3 sigmas out on either side
|
|
# will equals time_width
|
|
tw = self.time_width
|
|
sigma = tw / 6
|
|
mu = interpolate(-tw / 2, 1 + tw / 2, alpha)
|
|
|
|
def gauss_kernel(x):
|
|
if abs(x - mu) > 3 * sigma:
|
|
return 0
|
|
z = (x - mu) / sigma
|
|
return math.exp(-0.5 * z * z)
|
|
|
|
kernel_array = list(map(gauss_kernel, np.linspace(0, 1, len(anchor_widths))))
|
|
scaled_widths = anchor_widths * kernel_array
|
|
new_widths = np.zeros(submobject.get_num_points())
|
|
new_widths[0::3] = scaled_widths[:-1]
|
|
new_widths[2::3] = scaled_widths[1:]
|
|
new_widths[1::3] = (new_widths[0::3] + new_widths[2::3]) / 2
|
|
submobject.set_stroke(width=new_widths)
|
|
|
|
def finish(self):
|
|
super().finish()
|
|
for submob, start in self.get_all_families_zipped():
|
|
submob.match_style(start)
|
|
|
|
|
|
class FlashAround(VShowPassingFlash):
|
|
CONFIG = {
|
|
"stroke_width": 4.0,
|
|
"color": YELLOW,
|
|
"buff": SMALL_BUFF,
|
|
"time_width": 1.0,
|
|
"n_inserted_curves": 20,
|
|
}
|
|
|
|
def __init__(self, mobject, **kwargs):
|
|
digest_config(self, kwargs)
|
|
path = self.get_path(mobject)
|
|
path.insert_n_curves(self.n_inserted_curves)
|
|
path.set_points(path.get_points_without_null_curves())
|
|
path.set_stroke(self.color, self.stroke_width)
|
|
super().__init__(path, **kwargs)
|
|
|
|
def get_path(self, mobject):
|
|
return SurroundingRectangle(mobject, buff=self.buff)
|
|
|
|
|
|
class FlashUnder(FlashAround):
|
|
def get_path(self, mobject):
|
|
return Underline(mobject, buff=self.buff)
|
|
|
|
|
|
class ShowCreationThenDestruction(ShowPassingFlash):
|
|
CONFIG = {
|
|
"time_width": 2.0,
|
|
"run_time": 1,
|
|
}
|
|
|
|
|
|
class ShowCreationThenFadeOut(Succession):
|
|
CONFIG = {
|
|
"remover": True,
|
|
}
|
|
|
|
def __init__(self, mobject, **kwargs):
|
|
super().__init__(
|
|
ShowCreation(mobject),
|
|
FadeOut(mobject),
|
|
**kwargs
|
|
)
|
|
|
|
|
|
class AnimationOnSurroundingRectangle(AnimationGroup):
|
|
CONFIG = {
|
|
"surrounding_rectangle_config": {},
|
|
# Function which takes in a rectangle, and spits
|
|
# out some animation. Could be some animation class,
|
|
# could be something more
|
|
"rect_animation": Animation
|
|
}
|
|
|
|
def __init__(self, mobject, **kwargs):
|
|
digest_config(self, kwargs)
|
|
if "surrounding_rectangle_config" in kwargs:
|
|
kwargs.pop("surrounding_rectangle_config")
|
|
self.mobject_to_surround = mobject
|
|
|
|
rect = self.get_rect()
|
|
rect.add_updater(lambda r: r.move_to(mobject))
|
|
|
|
super().__init__(
|
|
self.rect_animation(rect, **kwargs),
|
|
)
|
|
|
|
def get_rect(self):
|
|
return SurroundingRectangle(
|
|
self.mobject_to_surround,
|
|
**self.surrounding_rectangle_config
|
|
)
|
|
|
|
|
|
class ShowPassingFlashAround(AnimationOnSurroundingRectangle):
|
|
CONFIG = {
|
|
"rect_animation": ShowPassingFlash
|
|
}
|
|
|
|
|
|
class ShowCreationThenDestructionAround(AnimationOnSurroundingRectangle):
|
|
CONFIG = {
|
|
"rect_animation": ShowCreationThenDestruction
|
|
}
|
|
|
|
|
|
class ShowCreationThenFadeAround(AnimationOnSurroundingRectangle):
|
|
CONFIG = {
|
|
"rect_animation": ShowCreationThenFadeOut
|
|
}
|
|
|
|
|
|
class ApplyWave(Homotopy):
|
|
CONFIG = {
|
|
"direction": UP,
|
|
"amplitude": 0.2,
|
|
"run_time": 1,
|
|
}
|
|
|
|
def __init__(self, mobject, **kwargs):
|
|
digest_config(self, kwargs, locals())
|
|
left_x = mobject.get_left()[0]
|
|
right_x = mobject.get_right()[0]
|
|
vect = self.amplitude * self.direction
|
|
|
|
def homotopy(x, y, z, t):
|
|
alpha = (x - left_x) / (right_x - left_x)
|
|
power = np.exp(2.0 * (alpha - 0.5))
|
|
nudge = there_and_back(t**power)
|
|
return np.array([x, y, z]) + nudge * vect
|
|
|
|
super().__init__(homotopy, mobject, **kwargs)
|
|
|
|
|
|
class WiggleOutThenIn(Animation):
|
|
CONFIG = {
|
|
"scale_value": 1.1,
|
|
"rotation_angle": 0.01 * TAU,
|
|
"n_wiggles": 6,
|
|
"run_time": 2,
|
|
"scale_about_point": None,
|
|
"rotate_about_point": None,
|
|
}
|
|
|
|
def get_scale_about_point(self):
|
|
if self.scale_about_point is None:
|
|
return self.mobject.get_center()
|
|
|
|
def get_rotate_about_point(self):
|
|
if self.rotate_about_point is None:
|
|
return self.mobject.get_center()
|
|
|
|
def interpolate_submobject(self, submobject, starting_sumobject, alpha):
|
|
submobject.match_points(starting_sumobject)
|
|
submobject.scale(
|
|
interpolate(1, self.scale_value, there_and_back(alpha)),
|
|
about_point=self.get_scale_about_point()
|
|
)
|
|
submobject.rotate(
|
|
wiggle(alpha, self.n_wiggles) * self.rotation_angle,
|
|
about_point=self.get_rotate_about_point()
|
|
)
|
|
|
|
|
|
class TurnInsideOut(Transform):
|
|
CONFIG = {
|
|
"path_arc": TAU / 4,
|
|
}
|
|
|
|
def create_target(self):
|
|
return self.mobject.copy().reverse_points()
|
|
|
|
|
|
class FlashyFadeIn(AnimationGroup):
|
|
CONFIG = {
|
|
"fade_lag": 0,
|
|
}
|
|
|
|
def __init__(self, vmobject, stroke_width=2, **kwargs):
|
|
digest_config(self, kwargs)
|
|
outline = vmobject.copy()
|
|
outline.set_fill(opacity=0)
|
|
outline.set_stroke(width=stroke_width, opacity=1)
|
|
|
|
rate_func = kwargs.get("rate_func", smooth)
|
|
super().__init__(
|
|
FadeIn(vmobject, rate_func=squish_rate_func(rate_func, self.fade_lag, 1)),
|
|
VShowPassingFlash(outline, time_width=1),
|
|
**kwargs
|
|
)
|