在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → manim源代码

manim源代码

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:4.79M
  • 下载次数:12
  • 浏览次数:433
  • 发布时间:2020-11-30
  • 实例类别:Python语言基础
  • 发 布 人:laiboy
  • 文件格式:.zip
  • 所需积分:2
 相关标签: 源代码 代码 IM

实例介绍

【实例简介】

制作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


标签: 源代码 代码 IM

实例下载地址

manim源代码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警