Uwe Zimmermann

Results 93 comments of Uwe Zimmermann

is this really your complete code? ```py from manim import * class Tran(Scene): def construct(self): A = Tex("A") B = Tex("B") self.play((A, B)) ``` You are missing any form of...

you can configure the output directory using the `media_dir` attribute: https://docs.manim.community/en/stable/reference/manim._config.utils.ManimConfig.html#manim._config.utils.ManimConfig.media_dir https://docs.manim.community/en/stable/guides/configuration.html

could you please provide an example which does not depend on your external data files - this would allow for quick testing and debugging. Until then you can check yourself,...

try to rename your file to something else than "manim.py" and make sure to remove any file called "manim.py"

as a help to debug the cause of the new problem in 0.18.0.post0: the following code works, i.e. explicitly defining an `OpenGLSurface` while the internal overloading of a `Surface` or...

This is true for every coordinate system both in 2D and 3D. The coordinate system objects work as coordinate transformations between a local system inside the object and the global...

This second version of the example also contains a polar plane: https://gist.github.com/uwezi/37fff0e51eb9e7e50f0b1474845a78e3#file-20230627_coords-py ![Image](https://github.com/user-attachments/assets/1796e2ad-ae6c-4113-9caa-13a9c17c4d8a)

So what should you do if you have an arbitrarily sized polar plane and want to draw a circle with a given in-plane radius? ```py unitradius = np.linalg.norm(pplane.pr2pt(1,0)-pplane.pr2pt(0,0)) circle =...

try ```py Tex.set_default(font_size=9.6) half = Tex("text goes here \frac{1}{2}") self.play(Write(half, stroke_width=20)) ``` and then adapt it to your needs... Explanation: `Write()` is a descendant from `DrawBorderThenFill` which has some additional...

The logarithmic function `np.log(x)` is not defined for values of `x