Uwe Zimmermann
Uwe Zimmermann
May I add a little suggestion: I now often use `np.random.choice()` to get a random color from a given list of colors, since not all colors usually fit to the...
I have a comment - if I understand this issue correctly the difference would be that in the case of a static version/single object the sequence generated for all different...
not a fix, but a work-around: ```py class MainScene(Scene): def construct(self): self.wait() text = MathTex("amogus", font_size=30) line = Line([-2, 0, 0], [2, 0, 0], color=RED_D, z_index=-1).set_opacity(0) self.add(line) self.play(LaggedStart( FadeIn(text), line.animate.set_opacity(1),...
If you already have isolated the z-index as the culprit, then perhaps the title of your posting here is a bit misleading...
You placed a bug-report on the Github for ManimCE, but you are apparently using ManimGL. These are two different editions of Manim, see https://docs.manim.community/en/stable/faq/installation.html Also see the Github of ManimGL...
There is also a fair and honest description of the origin of Manim in the documentation at https://docs.manim.community/en/stable/faq/installation.html which is read by far more people than a `readme.md` in a...
can't you give your issue a descriptive title? According to a very recent discussion on Discord the following might help your with your pango/cairo installation problem on Ubuntu: ``` sudo...
alternatively you can just set the color for the object afterwards: ```py class bullets(Scene): def construct(self): t3 = BulletedList( "Low Signal-to-Noise Ratio (SNR)", "Low contrast", "Low resolution", color=BLUE, fill_color=BLUE, stroke_color=BLUE...
The reason for this behavior is that Manim does not typeset the bulleted list as an `itemize` in LaTeX, but rather makes individual rows out of the items and places...
you can already now address all separate paths and features from an SVG file by its position in the file - they all get an index in the list of...