mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
11 lines
240 B
Python
11 lines
240 B
Python
![]() |
from manimlib.imports import *
|
||
|
from from_3b1b.active.bayes.part1 import BayesDiagram
|
||
|
|
||
|
OUTPUT_DIRECTORY = "bayes/footnote"
|
||
|
|
||
|
|
||
|
class Test(Scene):
|
||
|
def construct(self):
|
||
|
diagram = BayesDiagram(0.4, 0.5, 0.2)
|
||
|
self.add(diagram)
|