mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
18 lines
394 B
Python
18 lines
394 B
Python
![]() |
from big_ol_pile_of_manim_imports import *
|
||
|
from active_projects.clacks.question import BlocksAndWallExample
|
||
|
|
||
|
|
||
|
class PreviousTwoVideos(BlocksAndWallExample):
|
||
|
CONFIG = {
|
||
|
"sliding_blocks_config": {
|
||
|
"block1_config": {
|
||
|
"mass": 1e0,
|
||
|
"velocity": -2,
|
||
|
}
|
||
|
},
|
||
|
"wait_time": 15,
|
||
|
}
|
||
|
|
||
|
def construct(self):
|
||
|
pass
|