DEV Community

RobinFiveWords
RobinFiveWords

Posted on

PlutoViz: More prep

This entire series contains major spoilers for Advent of Code 2019 day 20.

I'm leaning toward attempting to animate part 1 in 2D rather than jumping straight to part 2 in 3D. It seems like the wiser approach.

Tonight I cleaned up my solution script a bit. Instead of importing my 2D point class, I pasted it into the script and removed all the methods I don't use here. I also checked whether any names I used in the global namespace appear in locals().keys() after from manim import *, and Point does, so I changed mine to Point2D.

I'm also starting the Manim tutorials. I'm a tutorial junkie, and as I don't have a background in graphics, it again seems wiser to let the experts show me around first.

Top comments (0)