Dataset Viewer
Auto-converted to Parquet Duplicate
file_path
stringlengths
50
109
content
stringlengths
42
76k
AnimationsWithManim_Elteoremadebeethoven/README.md
<p align="center"><img src ="/_title.gif" /></p> ## Contents (updating) ### [Tutorial files](https://drive.google.com/open?id=10LYJVJsvkcl5a7q_S-ZlSxI7hEBepw3P) ### [Documentation](https://elteoremadebeethoven.github.io/manim_3feb_docs.github.io/html/index.html) ### Freelance job If you need an animation made in Mani...
AnimationsWithManim_Elteoremadebeethoven/ParticularAdvice.md
# Particular advice. Donations depend on the type of question you ask, if it is very basic it can be 10 USD, but if it is more complex, it can reach up to 50 USD. Contact me (private Discord chat, Reddit chat, Email) and ask the question, I will tell you how much the donation should be. In case you want me to make a ...
AnimationsWithManim_Elteoremadebeethoven/math_capsules/inscribed_angle.py
from manimlib.imports import * class DecimalTextNumber(VMobject): CONFIG = { "num_decimal_places": 2, "include_sign": False, "group_with_commas": True, "digit_to_digit_buff": 0.05, "show_ellipsis": False, "unit_type": "font", # tex or font "unit": None, # A...
AnimationsWithManim_Elteoremadebeethoven/math_capsules/sine_cosine_laws.py
from manimlib.imports import * class MeasureDistance(VGroup): CONFIG = { "color":RED_B, "buff":0.3, "lateral":0.3, "invert":False, "dashed_segment_length":0.09, "dashed":True, "ang_arrows":30*DEGREES, "size_arrows":0.2, "stroke":2.4, } ...
AnimationsWithManim_Elteoremadebeethoven/math_capsules/mnemonics_trig.py
from manimlib.imports import * class Sqrt2(VGroup): def __init__(self, n, **kwargs): super().__init__(**kwargs) body = TexMobject("\\frac{\\sqrt{%s}}{2}"%n)[0] number = body[2] self.top = body[:3] body.remove(body[2]) self.add(body,number) class Mnemonics(Scene): ...
AnimationsWithManim_Elteoremadebeethoven/.github/ISSUE_TEMPLATE.md
# __**WARNING**__ **Before writing an issue, please check the following links if someone has already resolved your question. If you are asking things that have already been resolved I will have no choice but to close your issue.** * [Manim issues](https://github.com/3b1b/manim/issues?q=is%3Aissue+is%3Aclosed) * [Stack...
AnimationsWithManim_Elteoremadebeethoven/English/4_transform/transform_issues.md
# Bad animation with Transform ```python3 class TransformIssues(Scene): def construct(self): # 0 1 2 text_1=TextMobject("A","B","C") # 0 text_2=TextMobject("B") text_2.next_to(text_1,UP,buff=1) #Add the elements 0 and 2 of text_1 to screen and text_2 self.play( ...
AnimationsWithManim_Elteoremadebeethoven/English/4_transform/4_transform.py
from big_ol_pile_of_manim_imports import * class TransformationText1V1(Scene): def construct(self): texto1 = TextMobject("First text") texto2 = TextMobject("Second text") self.play(Write(texto1)) self.wait() self.play(Transform(texto1,texto2)) self.wait() class TransformationText1V2(Scene): def construc...
AnimationsWithManim_Elteoremadebeethoven/English/4_transform/transform_issues.py
from big_ol_pile_of_manim_imports import * class TextLike1DArrays(Scene): def construct(self): text=TextMobject("Te","xt") # text=TextMobject("Te","xt")[0] # <- Recent versions for i in text: self.play(FadeIn(i)) self.wait() self.play(FadeOut(i)) self.wait() class TextLike2DArraysV1(Scene): def con...
AnimationsWithManim_Elteoremadebeethoven/English/4_transform/scenes.md
# Programs ```python3 class TransformationText1V1(Scene): def construct(self): texto1 = TextMobject("First text") texto2 = TextMobject("Second text") self.play(Write(texto1)) self.wait() self.play(Transform(texto1,texto2)) self.wait() ``` <p align="center"><img src ="/English/4_transform/gifs/Transformati...
AnimationsWithManim_Elteoremadebeethoven/English/6b_plots_3D/6b_plots_3D.py
from big_ol_pile_of_manim_imports import * #There seems to be no change between Scene and ThreeDScene class CameraPosition1(ThreeDScene): def construct(self): circulo=Circle() self.play(ShowCreation(circulo)) self.wait() ''' We have to add this line: def get_axis(self, min_val, max_va...
AnimationsWithManim_Elteoremadebeethoven/English/6b_plots_3D/scenes.md
# Configuration We have to add this method: ```python3 def get_axis(self, min_val, max_val, axis_config): new_config = merge_config([ axis_config, {"x_min": min_val, "x_max": max_val}, self.number_line_config, ]) return NumberLine(**new_config) ``` in Axe...
AnimationsWithManim_Elteoremadebeethoven/English/2_formulas_tex/2_formulas_tex.py
from big_ol_pile_of_manim_imports import *
AnimationsWithManim_Elteoremadebeethoven/English/2_formulas_tex/scenes.md
# ## Programas ### ```python3 ```` <p align="center"><img src ="/.gif" /></p> ### ```python3 ```` <p align="center"><img src ="/.gif" /></p>
AnimationsWithManim_Elteoremadebeethoven/English/0_instalation/conda_installation.md
# Conda installation ## Steps You need to have LaTeX (MikTeX, TeXLive or MacTeX), FFmpeg and Sox installed. 1. Open your conda shell 2. Clone the repository: `git clone https://github.com/3b1b/manim.git` 3. Move to the repository: `cd manim` 4. Create the enviroment: `conda env create --file=environment.yml --name ma...
AnimationsWithManim_Elteoremadebeethoven/English/0_instalation/windows/INSTRUCCIONES.md
# Instalación en Windows La instalación en Windows es particularmente elaborada, por lo que recomiendo ver el video tutorial de instalación en YouTube, pero aquí se esbozarán los pasos para la gente que tenga más conocimientos en computación. En caso de haber concluido todos los pasos y no lograr compilar los archivo...
AnimationsWithManim_Elteoremadebeethoven/English/0_instalation/gnuLinux/INSTRUCTIONS.md
# Instalation on GNU/Linux Link to [video tutorial](https://www.youtube.com/watch?v=z_WJaHYH66M). ## Instalation with the terminal: Open a terminal an run the follow commands: ### Install de LaTeX: Debian distributions: ```sh $ sudo apt-get install texlive-full ``` Arch distributions: ```sh $ sudo pacman -S texlive...
AnimationsWithManim_Elteoremadebeethoven/English/0_instalation/macOS/INSTRUCTIONS.md
# Installation on MacOS Link to [video tutorial](https://www.youtube.com/watch?v=uZj_GQc6pN4). ## Install dependencies. ### Open a terminal Search "terminal" on Spotlight <p align="center"><img src ="/English/0_instalation/macOS/gifs/terminal.png" /></p> ### Install Homebrew Copy the code from [Homebrew](https://...
AnimationsWithManim_Elteoremadebeethoven/English/5_visual_tools/5_visual_tools.py
from big_ol_pile_of_manim_imports import * class MoveBraces(Scene): def construct(self): text=TexMobject( "\\frac{d}{dx}f(x)g(x)=", #0 "f(x)\\frac{d}{dx}g(x)", #1 "+", #2 "g(x)\\frac{d}{dx}f(x)" #3 ) ...
AnimationsWithManim_Elteoremadebeethoven/English/5_visual_tools/scenes.md
# Programs ```python3 class MoveBraces(Scene): def construct(self): text=TexMobject( "\\frac{d}{dx}f(x)g(x)=", #0 "f(x)\\frac{d}{dx}g(x)", #1 "+", #2 "g(x)\\frac{d}{dx}f(x)" #3 ) self.play(Write(...
AnimationsWithManim_Elteoremadebeethoven/English/9_project/svg_classes.py
from big_ol_pile_of_manim_imports import * class CheckSVG(Scene): CONFIG={ "camera_config":{"background_color": WHITE}, "svg_type":"svg", "file":"", "svg_scale":0.9, "angle":0, "flip_svg":False, "fill_opacity": 1, "remove": [], "stroke_color": BLACK, "fill_color": BLACK, ...
AnimationsWithManim_Elteoremadebeethoven/English/9_project/9_project.py
from big_ol_pile_of_manim_imports import * #Import formulas: from tutorial.formulas_txt.formulas import formulas class SolveGeneralQuadraticEquation(Scene): def construct(self): self.import_formulas() self.write_formulas() self.set_changes() self.step_formula(n_step=1, changes=self.set_of_changes[0], fa...
AnimationsWithManim_Elteoremadebeethoven/English/9_project/scenes.md
# ## Programas ### ```python3 ```` <p align="center"><img src ="/.gif" /></p> ### ```python3 ```` <p align="center"><img src ="/.gif" /></p>
AnimationsWithManim_Elteoremadebeethoven/English/9_project/formulas_txt/formulas.py
from big_ol_pile_of_manim_imports import * from tutorial.svg_classes import CheckFormulaByTXT from io import * formulas=[] a_color=RED_B b_color=BLUE_B c_color=GREEN_B x_color=YELLOW_B for i in range(1,17): formula_open=open("tutorial/formulas_txt/formula%de.txt"%i,"r") formula=formula_open.readlines() formulas.a...
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
7