嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
制作3B1B那样的高逼格数学动画
manim-master
├── Dockerfile
├── LICENSE
├── README.md
├── docker-compose.yml
├── docs
│ ├── Makefile
│ ├── make.bat
│ └── source
│ ├── about.rst
│ ├── animation.rst
│ ├── assets
│ │ ├── AnimationFadeIn.mp4
│ │ ├── AnimationFadeInFrom.mp4
│ │ ├── AnimationFadeInFromDiagonal.mp4
│ │ ├── AnimationFadeInFromLarge.mp4
│ │ ├── AnimationFadeInFromPoint.mp4
│ │ ├── AnimationFadeInFromSmall.mp4
│ │ ├── AnimationFadeOut.mp4
│ │ ├── AnimationFadeOutAndShift.mp4
│ │ ├── AnimationGrowFromCenter.mp4
│ │ ├── AnimationGrowFromEdge.mp4
│ │ ├── SquareToCircle.mp4
│ │ └── coordinate
│ │ ├── CoorAlias.mp4
│ │ ├── CoorArithmetic.mp4
│ │ ├── CoorPolygon.png
│ │ └── DotMap.mp4
│ ├── conf.py
│ ├── constants.rst
│ ├── coordinate.rst
│ ├── getting_started
│ │ ├── animating_mobjects.rst
│ │ ├── index.rst
│ │ ├── learning_by_example.rst
│ │ ├── making_a_scene.rst
│ │ └── mathematical_objects.rst
│ ├── index.rst
│ └── installation
│ ├── index.rst
│ ├── linux.rst
│ ├── mac.rst
│ └── windows.rst
├── environment.yml
├── example_scenes.py
├── from_3b1b
│ ├── active
│ │ ├── bayes
│ │ │ ├── footnote.py
│ │ │ └── part1.py
│ │ └── diffyq
│ │ ├── all_part1_scenes.py
│ │ ├── all_part2_scenes.py
│ │ ├── all_part3_scenes.py
│ │ ├── all_part4_scenes.py
│ │ ├── all_part5_scenes.py
│ │ ├── fourier_montage_scenes.py
│ │ ├── part1
│ │ │ ├── pendulum.py
│ │ │ ├── phase_space.py
│ │ │ ├── pi_scenes.py
│ │ │ ├── shared_constructs.py
│ │ │ ├── staging.py
│ │ │ └── wordy_scenes.py
│ │ ├── part2
│ │ │ ├── fourier_series.py
│ │ │ ├── heat_equation.py
│ │ │ ├── pi_scenes.py
│ │ │ ├── shared_constructs.py
│ │ │ ├── staging.py
│ │ │ └── wordy_scenes.py
│ │ ├── part3
│ │ │ ├── discrete_case.py
│ │ │ ├── pi_creature_scenes.py
│ │ │ ├── staging.py
│ │ │ ├── temperature_graphs.py
│ │ │ └── wordy_scenes.py
│ │ ├── part4
│ │ │ ├── complex_functions.py
│ │ │ ├── fourier_series_scenes.py
│ │ │ ├── long_fourier_scenes.py
│ │ │ ├── pi_creature_scenes.py
│ │ │ ├── staging.py
│ │ │ ├── temperature_scenes.py
│ │ │ └── three_d_graphs.py
│ │ ├── part5
│ │ │ └── staging.py
│ │ └── solve_pendulum_ode_sample_code.py
│ ├── old
│ │ ├── 256.py
│ │ ├── WindingNumber.py
│ │ ├── WindingNumber_G.py
│ │ ├── alt_calc.py
│ │ ├── basel
│ │ │ ├── basel.py
│ │ │ └── basel2.py
│ │ ├── bell.py
│ │ ├── borsuk.py
│ │ ├── borsuk_addition.py
│ │ ├── brachistochrone
│ │ │ ├── curves.py
│ │ │ ├── cycloid.py
│ │ │ ├── drawing_images.py
│ │ │ ├── graveyard.py
│ │ │ ├── light.py
│ │ │ ├── misc.py
│ │ │ ├── multilayered.py
│ │ │ └── wordplay.py
│ │ ├── cba.py
│ │ ├── clacks
│ │ │ ├── all_s2_scenes.py
│ │ │ ├── name_bump.py
│ │ │ ├── question.py
│ │ │ ├── solution1.py
│ │ │ └── solution2
│ │ │ ├── block_collision_scenes.py
│ │ │ ├── mirror_scenes.py
│ │ │ ├── pi_creature_scenes.py
│ │ │ ├── position_phase_space.py
│ │ │ ├── simple_scenes.py
│ │ │ └── wordy_scenes.py
│ │ ├── complex_multiplication_article.py
│ │ ├── counting_in_binary.py
│ │ ├── crypto.py
│ │ ├── dandelin.py
│ │ ├── div_curl.py
│ │ ├── domino_play.py
│ │ ├── dominos
│ │ │ ├── data01.txt
│ │ │ ├── data02.txt
│ │ │ ├── data03.txt
│ │ │ ├── data04.txt
│ │ │ ├── data05.txt
│ │ │ ├── data06.txt
│ │ │ ├── data07.txt
│ │ │ ├── data08.txt
│ │ │ ├── data09.txt
│ │ │ ├── data10.txt
│ │ │ ├── data11.txt
│ │ │ ├── data12.txt
│ │ │ ├── data13.txt
│ │ │ ├── data14.txt
│ │ │ ├── data15.txt
│ │ │ ├── data16.txt
│ │ │ ├── data17.txt
│ │ │ ├── data18.txt
│ │ │ └── data19.txt
│ │ ├── efvgt.py
│ │ ├── eoc
│ │ │ ├── chapter1.py
│ │ │ ├── chapter10.py
│ │ │ ├── chapter2.py
│ │ │ ├── chapter3.py
│ │ │ ├── chapter4.py
│ │ │ ├── chapter5.py
│ │ │ ├── chapter6.py
│ │ │ ├── chapter7.py
│ │ │ ├── chapter8.py
│ │ │ ├── chapter9.py
│ │ │ ├── footnote.py
│ │ │ └── old_chapter1.py
│ │ ├── eola
│ │ │ ├── chapter0.py
│ │ │ ├── chapter1.py
│ │ │ ├── chapter10.py
│ │ │ ├── chapter11.py
│ │ │ ├── chapter2.py
│ │ │ ├── chapter3.py
│ │ │ ├── chapter4.py
│ │ │ ├── chapter5.py
│ │ │ ├── chapter6.py
│ │ │ ├── chapter7.py
│ │ │ ├── chapter8.py
│ │ │ ├── chapter8p2.py
│ │ │ ├── chapter9.py
│ │ │ ├── footnote.py
│ │ │ ├── footnote2.py
│ │ │ └── thumbnails.py
│ │ ├── eulers_characteristic_formula.py
│ │ ├── fc1.py
│ │ ├── for_flammy.py
│ │ ├── fourier.py
│ │ ├── fractal_charm.py
│ │ ├── fractal_dimension.py
│ │ ├── generate_logo.py
│ │ ├── gradient.py
│ │ ├── hanoi.py
│ │ ├── highD.py
│ │ ├── hilbert
│ │ │ ├── fractal_porn.py
│ │ │ ├── section1.py
│ │ │ ├── section2.py
│ │ │ └── section3.py
│ │ ├── hyperdarts.py
│ │ ├── inventing_math.py
│ │ ├── inventing_math_images.py
│ │ ├── leibniz.py
│ │ ├── lost_lecture.py
│ │ ├── matrix_as_transform_2d.py
│ │ ├── moser_intro.py
│ │ ├── moser_main.py
│ │ ├── mug.py
│ │ ├── music_and_measure.py
│ │ ├── mvcr.py
│ │ ├── nn
│ │ │ ├── image_map
│ │ │ ├── mnist_loader.py
│ │ │ ├── network.py
│ │ │ ├── part1.py
│ │ │ ├── part2.py
│ │ │ ├── part3.py
│ │ │ ├── pretrained_weights_and_biases
│ │ │ ├── pretrained_weights_and_biases_36
│ │ │ └── pretrained_weights_and_biases_on_zero
│ │ ├── number_line_scene.py
│ │ ├── patreon.py
│ │ ├── pi_day.py
│ │ ├── playground_counting_in_binary.py
│ │ ├── putnam.py
│ │ ├── pythagorean_proof.py
│ │ ├── qa_round_two.py
│ │ ├── quat3d.py
│ │ ├── quaternions.py
│ │ ├── sphere_area.py
│ │ ├── spirals.py
│ │ ├── tattoo.py
│ │ ├── tau_poem.py
│ │ ├── three_dimensions.py
│ │ ├── triangle_of_power
│ │ │ ├── end.py
│ │ │ ├── intro.py
│ │ │ └── triangle.py
│ │ ├── triples.py
│ │ ├── turbulence.py
│ │ ├── uncertainty.py
│ │ ├── wallis.py
│ │ ├── waves.py
│ │ ├── wcat.py
│ │ ├── windmill.py
│ │ └── zeta.py
│ └── on_hold
│ ├── aliquot.py
│ ├── eola2
│ │ ├── cramer.py
│ │ ├── determinant_puzzle.py
│ │ └── gauss.py
│ ├── eop
│ │ ├── bayes.py
│ │ ├── bayes_footnote.py
│ │ ├── birthday.py
│ │ ├── chapter0
│ │ │ └── intro.py
│ │ ├── chapter0.py
│ │ ├── chapter1
│ │ │ ├── all_sequences.py
│ │ │ ├── area_model_bayes.py
│ │ │ ├── area_model_erf.py
│ │ │ ├── area_model_expectation.py
│ │ │ ├── brick_row_scene.py
│ │ │ ├── entire_brick_wall.py
│ │ │ ├── intro.py
│ │ │ ├── just_randy_flipping_coin.py
│ │ │ ├── million_flips.py
│ │ │ ├── morph_brick_row_into_histogram.py
│ │ │ ├── prob_dist_visuals.py
│ │ │ ├── quiz_result.py
│ │ │ ├── show_proportion.py
│ │ │ ├── show_uncertainty_darts.py
│ │ │ ├── show_uncertainty_dice.py
│ │ │ ├── show_uncertainty_disease.py
│ │ │ ├── stacking_coins.py
│ │ │ ├── think_about_coin.py
│ │ │ ├── various_intro_visuals.py
│ │ │ └── what_does_probability_mean.py
│ │ ├── chapter2
│ │ │ └── permutation_grid.py
│ │ ├── combinations.py
│ │ ├── independence.py
│ │ ├── pascal.py
│ │ ├── reusable_imports.py
│ │ ├── reusables
│ │ │ ├── binary_option.py
│ │ │ ├── brick_row.py
│ │ │ ├── coin_flip_tree.py
│ │ │ ├── coin_flipping_pi_creature.py
│ │ │ ├── coin_stacks.py
│ │ │ ├── dice.py
│ │ │ ├── eop_constants.py
│ │ │ ├── eop_helpers.py
│ │ │ ├── histograms.py
│ │ │ ├── sick_pi_creature.py
│ │ │ └── upright_coins.py
│ │ └── what_does_probability_mean.py
│ ├── holomorphic.py
│ ├── moduli.py
│ └── shadows.py
├── logo
│ ├── cropped.png
│ ├── graph.png
│ ├── logo.py
│ ├── with_name.png
│ └── with_subtext.png
├── manim.py
├── manim_docker_diagram.png
├── manimlib
│ ├── __init__.py
│ ├── animation
│ │ ├── animation.py
│ │ ├── composition.py
│ │ ├── creation.py
│ │ ├── fading.py
│ │ ├── growing.py
│ │ ├── indication.py
│ │ ├── movement.py
│ │ ├── numbers.py
│ │ ├── rotation.py
│ │ ├── specialized.py
│ │ ├── transform.py
│ │ └── update.py
│ ├── camera
│ │ ├── camera.py
│ │ ├── mapping_camera.py
│ │ ├── moving_camera.py
│ │ ├── multi_camera.py
│ │ └── three_d_camera.py
│ ├── config.py
│ ├── constants.py
│ ├── container
│ │ └── container.py
│ ├── ctex_template.tex
│ ├── extract_scene.py
│ ├── files
│ │ ├── Bubbles_speech.svg
│ │ ├── Bubbles_thought.svg
│ │ └── PiCreatures_plain.svg
│ ├── for_3b1b_videos
│ │ ├── common_scenes.py
│ │ ├── pi_class.py
│ │ ├── pi_creature.py
│ │ ├── pi_creature_animations.py
│ │ └── pi_creature_scene.py
│ ├── imports.py
│ ├── media_dir.txt
│ ├── mobject
│ │ ├── changing.py
│ │ ├── coordinate_systems.py
│ │ ├── frame.py
│ │ ├── functions.py
│ │ ├── geometry.py
│ │ ├── matrix.py
│ │ ├── mobject.py
│ │ ├── mobject_update_utils.py
│ │ ├── number_line.py
│ │ ├── numbers.py
│ │ ├── probability.py
│ │ ├── shape_matchers.py
│ │ ├── svg
│ │ │ ├── brace.py
│ │ │ ├── code_mobject.py
│ │ │ ├── drawings.py
│ │ │ ├── svg_mobject.py
│ │ │ ├── tex_mobject.py
│ │ │ └── text_mobject.py
│ │ ├── three_d_shading_utils.py
│ │ ├── three_d_utils.py
│ │ ├── three_dimensions.py
│ │ ├── types
│ │ │ ├── image_mobject.py
│ │ │ ├── point_cloud_mobject.py
│ │ │ └── vectorized_mobject.py
│ │ ├── value_tracker.py
│ │ └── vector_field.py
│ ├── once_useful_constructs
│ │ ├── NOTE.md
│ │ ├── arithmetic.py
│ │ ├── combinatorics.py
│ │ ├── complex_transformation_scene.py
│ │ ├── counting.py
│ │ ├── fractals.py
│ │ ├── graph_theory.py
│ │ ├── light.py
│ │ ├── matrix_multiplication.py
│ │ └── region.py
│ ├── scene
│ │ ├── graph_scene.py
│ │ ├── media_dir.txt
│ │ ├── moving_camera_scene.py
│ │ ├── reconfigurable_scene.py
│ │ ├── sample_space_scene.py
│ │ ├── scene.py
│ │ ├── scene_file_writer.py
│ │ ├── scene_from_video.py
│ │ ├── three_d_scene.py
│ │ ├── vector_space_scene.py
│ │ └── zoomed_scene.py
│ ├── tex_template.tex
│ └── utils
│ ├── bezier.py
│ ├── color.py
│ ├── config_ops.py
│ ├── debug.py
│ ├── file_ops.py
│ ├── images.py
│ ├── iterables.py
│ ├── paths.py
│ ├── rate_functions.py
│ ├── simple_functions.py
│ ├── sounds.py
│ ├── space_ops.py
│ ├── strings.py
│ └── tex_file_writing.py
├── perf_scenes.py
├── requirements.txt
├── setup.cfg
├── setup.py
├── stage_scenes.py
└── travis
├── build_docs.sh
└── crypt.enc
47 directories, 371 files