3b1b-manim/manimlib/mobject/functions.py

69 lines
2.1 KiB
Python
Raw Normal View History

from manimlib.constants import *
from manimlib.mobject.types.vectorized_mobject import VMobject
from manimlib.utils.config_ops import digest_config
class ParametricCurve(VMobject):
2016-02-27 16:32:53 -08:00
CONFIG = {
2020-06-06 11:43:59 -07:00
"t_range": [0, 1, 0.1],
"epsilon": 1e-8,
2020-02-11 19:55:00 -08:00
# TODO, automatically figure out discontinuities
"discontinuities": [],
}
2020-06-06 11:43:59 -07:00
def __init__(self, t_func, t_range=None, **kwargs):
digest_config(self, kwargs)
if t_range is not None:
self.t_range[:len(t_range)] = t_range
# To be backward compatible with all the scenes specifying t_min, t_max, step_size
self.t_range = [
kwargs.get("t_min", self.t_range[0]),
kwargs.get("t_max", self.t_range[1]),
kwargs.get("step_size", self.t_range[2]),
]
self.t_func = t_func
2016-04-19 00:20:19 -07:00
VMobject.__init__(self, **kwargs)
def get_point_from_function(self, t):
2020-06-06 11:43:59 -07:00
return self.t_func(t)
2019-04-27 18:39:22 +03:00
2020-02-11 19:55:00 -08:00
def init_points(self):
2020-06-06 11:43:59 -07:00
t_min, t_max, step = self.t_range
2019-04-27 18:39:22 +03:00
2020-06-09 16:57:44 -07:00
jumps = np.array(self.discontinuities)
jumps = jumps[(jumps > t_min) & (jumps < t_max)]
boundary_times = [t_min, t_max, *(jumps - self.epsilon), *(jumps + self.epsilon)]
boundary_times.sort()
for t1, t2 in zip(boundary_times[0::2], boundary_times[1::2]):
2020-06-09 16:57:44 -07:00
t_range = [*np.arange(t1, t2, step), t2]
points = np.array([self.t_func(t) for t in t_range])
self.start_new_path(points[0])
self.add_points_as_corners(points[1:])
self.make_approximately_smooth()
return self
class FunctionGraph(ParametricCurve):
2016-02-27 16:32:53 -08:00
CONFIG = {
"color": YELLOW,
2020-06-09 16:57:44 -07:00
"x_range": [-8, 8, 0.25],
}
2020-06-06 11:43:59 -07:00
def __init__(self, function, x_range=None, **kwargs):
2018-01-18 16:46:38 -08:00
digest_config(self, kwargs)
self.function = function
2020-06-06 11:43:59 -07:00
if x_range is not None:
self.x_range[:len(x_range)] = x_range
def parametric_function(t):
return [t, function(t), 0]
2020-06-09 12:34:43 -07:00
super().__init__(parametric_function, self.x_range, **kwargs)
2020-06-06 11:43:59 -07:00
2018-01-18 16:46:38 -08:00
def get_function(self):
return self.function
def get_point_from_function(self, x):
2020-06-06 11:43:59 -07:00
return self.t_func(x)