2020-12-31 13:05:22 -08:00
|
|
|
|
2021-01-01 20:10:38 -08:00
|
|
|
from manim_imports_ext import *
|
2020-12-31 13:05:22 -08:00
|
|
|
|
|
|
|
class WhatDoesItReallyMean(TeacherStudentsScene):
|
|
|
|
|
|
|
|
CONFIG = {
|
|
|
|
"default_pi_creature_kwargs": {
|
|
|
|
"color": MAROON_E,
|
|
|
|
"flip_at_start": True,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
def construct(self):
|
|
|
|
|
|
|
|
student_q = TextMobject("What does", "``probability''", "\emph{actually}", "mean?")
|
|
|
|
student_q.set_color_by_tex("probability", YELLOW)
|
|
|
|
self.student_says(student_q, target_mode = "sassy")
|
|
|
|
self.wait()
|
|
|
|
|
|
|
|
question_bubble = VGroup(student_q, students[1].bubble)
|
|
|
|
scaled_qb = question_bubble.copy()
|
|
|
|
scaled_qb.scale(0.4).to_corner(UL)
|
|
|
|
self.play(Transform(question_bubble, scaled_qb))
|
|
|
|
self.wait()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.teacher_says("Don't worry -- philosophy can come later!")
|
|
|
|
self.wait()
|
|
|
|
|