Files
manim/active_projects/eop/what_does_probability_mean.py
2018-05-03 17:48:09 +02:00

22 lines
583 B
Python

from big_ol_pile_of_manim_imports import *
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()
self.teacher_says("Don't worry -- philosophy can come later!")
self.wait()