본문 바로가기

Programming/Manim Lectures

(67)
[03]Hello Manim The first thing to do when learning a programming language is to print a simple string like “Hello World”. Here again, we will make a video that prints "Hello Manim" string on the screen. This way, you'll get a rough idea of how you created the video. I use PyCham program when writing Python and Manim code. I've also used notepad++ and Visual Studio, but PyCham was the easiest and most effective..
[02-4]Multilingual setting in LaText Korean character Append '\usepackage{kotex}' in the manimlib/tex_template.tex file. Chinese character Chinese character package is already included in the manimlib/template.tex file as below. If you couldn't display Chinese character, check whether the 'ctex' package is in the template.tex file. And edit configuration in 'constants.py' TEX_USE_CTEX = True # Support Chinese The above Chinese char..
[02-3]Using the Manim in the new directory If you want to make a movie using Manim in a directory other than the 'C:/dev/manim' directory installed in the previous chapter, you can do the following. The reason why you want to use a different folder is, you may need to modify the Manim library code by yourself when making a video, so leave the original library at 'C:/dev/manim', and you can edit the library in another directory. 1. Create..
[02-2]Download and Install the Manim package Install Manim package 1. Download Manim package from here: https://github.com/3b1b/manim 3b1b/manim Animation engine for explanatory math videos. Contribute to 3b1b/manim development by creating an account on GitHub. github.com 2. unzip downloaded zip file into the directory you want to use. Manim library dosen't need to install it but only unzip the package is enough to use it. Let's suppose yo..
[02-1]Basic environment configuration and required library installation Manim can be installed not only on Windows, but also on Linux and Mac, but here we will introduce the installation method only when using Windows10. Basic Environment for this lecture OS: Windows 10 (or Windows 7) Python: Python 3 (If you're not installed Python in your PC, please visit Python site and intall it) I'm using Python 3.7.7 but the latest version is 3.8.3 now (2020.5.31). It's possib..
[02]Building a development environment To use Mimim, you need to install some required libraries and Mimim package. Since the file to be downloaded is a bit large (especially Miktex, a library for inputting formulas), the entire download and installation will take about 30 minutes to an hour. [02-1]Basic environment configuration and required library installation [02-2]Download and Install the Manim package [02-3]Using the Manim in t..
[01]Introduction to Manim Manim is a Python library that allows you to create graphs and animations used in math and science that are difficult to produce with ordinary video production tools. The famous Math YouTube channel 3Blue1Brown is making all the animations with this `Manim` library. You can definitely see what you can do with Manim and see what's amazing about it by watching the video below explaining the Fourie..