first commit

This commit is contained in:
tonitch
2025-03-07 10:16:29 +01:00
commit a430ca2bce
4 changed files with 136 additions and 0 deletions

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
.PHONY: all preview render opengl venv
all: preview
preview: main.py
manim render main.py -pqm
render: main.py
manim render main.py -qh
opengl: main.py
manim render main.py -p --renderer=opengl
venv: requirements.txt
python -m venv venv
source venv/bin/activate
pip install -r requirements