Uwe Zimmermann

Results 93 comments of Uwe Zimmermann

I have a suggestion here - I created a small `RandomColor` object which contains its own instance of a random number generator which can be seeded and functions to pick...

Ok I continued to work on it, ready to suggest a pull-request, after some additional polishing. What does everyone/anyone think? - `rndcol = RandomColor(seed=42)` initializes an instance with its own...

The problem with the `moving_objects` list also arises when objects are animated before the matrix transform. See this code: the circle is not transformed according to the matrix, but only...

I would absolutely support @knugie 's suggestion. Currently I am opening the gist in a browser window directly after creating it with lepton, and then I add the image there...

It's a Python package which is used by Manim and is not automatically pre-installed in some versions of Python. It should be easily installable by using the following command on...

According to the Pango documentation (Pango is the external python library used here), it should be `...` which actually works ```py class MarkupExample(Scene): def construct(self): text = MarkupText("underlined") self.add(text) ```...

I have currently not set up a development branch again on my system - perhaps someone could quickly change the docstring? Line 889 in `text_mobject.py` - or rather line 897...

see also my answer to your question in Discord...

This has been discussed on Discord: https://discord.com/channels/581738731934056449/1173280309601636483/1173280309601636483 The solution presented there is by cloning your objects which are supposed to cast a shadow. Implementing a true blurred shadow is not...

There is also another message on Discord by a user who claims that he has developed a drop-shadow in Manim back in 2022, but he seems to have never shared...