mirror of
https://github.com/3b1b/manim.git
synced 2026-04-26 03:00:23 -04:00
added central input sampling fro integrals
This commit is contained in:
@@ -245,6 +245,8 @@ class GraphScene(Scene):
|
||||
sample_input = x
|
||||
elif input_sample_type == "right":
|
||||
sample_input = x + dx
|
||||
elif input_sample_type == "center":
|
||||
sample_input = x + 0.5 * dx
|
||||
else:
|
||||
raise Exception("Invalid input sample type")
|
||||
graph_point = self.input_to_graph_point(sample_input, graph)
|
||||
@@ -421,6 +423,9 @@ class GraphScene(Scene):
|
||||
|
||||
return group
|
||||
|
||||
def get_animation_integral_bounds_change(self):
|
||||
pass
|
||||
|
||||
def animate_secant_slope_group_change(
|
||||
self, secant_slope_group,
|
||||
target_dx=None,
|
||||
|
||||
Reference in New Issue
Block a user