-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmobjects.py
56 lines (43 loc) · 1.5 KB
/
mobjects.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
from __future__ import annotations
from manim import *
import numpy as np
# updating object to contain arrays
class ArrayMobject(Mobject):
def __init__(self, array : np.ndarray = None):
super().__init__()
# save the data
self.set_data(array)
# data getter
def get_data(self) -> np.ndarray:
return self.__data
# data setter
def set_data(self, data : np.ndarray):
self.__data = data
def sum(self) -> ArrayMobject:
# accumulate data and return new mobject
return ArrayMobject(np.add.accumulate(self.get_data()))
# easy indexing
def __getitem__(self, idx: int) -> float:
return self.get_data()[idx]
def become(self, new_obj : ArrayMobject):
# don't create new mobject
self.set_data(new_obj.get_data())
# standard
return self
class NestedPath(VMobject):
def updater(self, point : np.ndarray, fade: float):
# save previous path
# as submobject
previous_path = NestedPath()
self.add(previous_path)
# add new point to corner
# and fade while visible
previous_path.set_points_as_corners(self.points.copy())
previous_path.add_updater(lambda path: path.fade(
fade) if path.get_stroke_opacity() > 2e-2 else path.clear_updaters())
# add to path
# and truncate points
self.add_points_as_corners([point])
self.set_points_as_corners(self.points[-4:])
# standard
return self