Zhuanvi

Results 3 comments of Zhuanvi

I also encountered this problem. To fix it, you not only need to modify the constants.py file, but also the emit_gl_Position.glsl and get_gl_Position.glsl files in the shaders/inserts directory. In both...

[0001-fix-aspect_ratio-other-than-16-9-issue.patch](https://github.com/3b1b/manim/files/11475405/0001-fix-aspect_ratio-other-than-16-9-issue.patch) This patch is based on the manim master branch, which I modified to solve this issue.

For this issue, I have an ugly solution: modify image_mobject.py, ```python class ImageMobject(Mobject): shader_folder: str = "image" shader_dtype: Sequence[Tuple[str, type, Tuple[int]]] = [ ('point', np.float32, (3,)), ('im_coords', np.float32, (2,)), ('opacity',...