鹤翔万里
鹤翔万里
> ``` > D:\Project\3blue1brown>manim fourier.py > Manim Community v0.11.0 > > [18:18:55] INFO OpenGL_accelerate module loaded acceleratesupport.py:13 > INFO Using accelerated ArrayDatatype arraydatatype.py:280 > > (process:17712): GLib-GIO-WARNING **: 18:18:55.854: Unexpectedly,...
Please show the code and the version of manim.
please follow the tutorial in the README file. If you are using the version in `cairo-backend` branch, you can just download the code and run: ```sh python -m manim example_scenes.py...
> Do I need to uninstall the non Manim files from the video in the webpage I linked to? No, you don't have to. Just remove the manim folder and...
Maybe you need admin privilege to open a new cmd and run it again.
Is this fixed in #1529 ?
> It's not yet fixed. On my system at least, things work initially but fail once you resize the window. I can look into this a bit later. It also...
> What is the current status of the shaders branch? 3b1b is making and perfecting the manim in the shaders branch, which will be faster. But there may be some...
> why could be such situation: self.play(grid.animate.apply_function............ then it shows ( AttributeError: 'NumberPlane' object has no attribute 'animate') Please open a new issue. I guess you are using the old...
Try this: ```python class Code1498(Scene): def construct(self): t = Text('text') origin_height = t.get_height() target_height = 2 tot_time = 2 def anim(mob, dt): mob.set_height( mob.get_height() + \ (target_height - origin_height) /...