This is a presentation tool inspired by 3blue1brown's tool manim. Currently it supports rendering LaTeX files, relatively simple layout, reading PNGs among other things.
The biggest difference is the goal of the two programs. Manim is made to render a video, while ytesrev is made to work in live situations where reactivity and dynamicity are valuable. For example, in manim, screen size and timing are pretty much constant, where ytesrev has to have a dynamic layout engine and an event system.
Check out the src/example/
folder.
src/anchor/
: To keep things anchored to one side of the screensrc/ditherer/
: To create those cool text 'whoosh' effectssrc/drawable/
Abstract definitions of drawable objects as well as drawing positionssrc/empty/
: The empty objectsrc/image/
: Loading PNGssrc/latex/
: Rendering LaTeX expressionssrc/layout/
: Definitions and implementations of layouts (stacking and splitting)src/margin/
: To give some object a marginsrc/scene/
: Abstract definitions of a scene (slide) and a wrapper forDrawable
ssrc/solid/
: A rectangle of a solid colorsrc/window/
: Contains theWindowManager
which is responsible for creating the window, managing events and timings and keeping track of the slidessrc/withsize/
: Give an object a constant size