Benjamin Hackl

Results 176 comments of Benjamin Hackl

I did change the pipeline to `macos-latest` again, but it seems that there are now problems with pango. We might want to delay having a working `macos-latest` pipeline until after...

@jeertmans thanks, I have some time today to work on this today, I'm somewhat optimistic that this can be finished. :-) Current state of things: In 5fe5bb5 I've produced some...

All of our file formats work as intended locally; I've split the codec test, there now is a separate one for gifs. For webm, mov, mp4 the parametrized test explicitly...

It full on fails. Good find! Stack trace ``` ╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮ │ /Users/behackl/code/manim/manim/cli/render/commands.py:120 in render │ │ │ │ 117 │ │ │ try: │...

Yes, the `-p` flag is exactly what I've been unhappy with for a while -- but I guess only because of the unfortunate double-usage with the OpenGL renderer where it...

There was a minor issue with the opacity (which made the rendered tests fail). I've resolved this in d87865d, merging this as soon as the pipelines pass.

Simply removing the non-default `z_index` is not a great solution. We need to ensure that edges are drawn before vertices (which is the reason why we are currently setting the...

Sounds like a good approach. It would make sense to check at which points submobjects are `Graph.add`ed to a graph -- but I think if we make sure that the...

The (first) example your documentation build fails to render is this: ```py class VectorArrow(Scene): def construct(self): dot = Dot(ORIGIN) arrow = Arrow(ORIGIN, [2, 2, 0], buff=0) numberplane = NumberPlane() origin_text...

Practically already available via `VMobject.set_points_as_corners(points: Point3D_Array)`. It might make sense to add a dedicated `PolyLine` class.