You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A glowdot can be made by nesting a bunch of gradually more transparent balls. The OpenGL renderer depth tester doesn't behave well with this situation and renders it as a dimmer, dull, no longer glowing dot. (Problems with transparancy is apparently a known common OpenGL problem, not directly a Manim problem).
Expected behavior
A glowing dot that correctly moves in front of and behind other objects. If I have a static camera pose, then I can be more careful about the order I add objects, but if my camera pose is dynamic, this won't work.
The issue seems to be with the OpenGL depth tester in regards to transparent objects. My bad idea patch solution is in my scene construct to set depth testing for all opaque objects but disable depth testing for transparent objects. Then I modified the update_frame method of class OpenGLRenderer to sort the mobjects in order of farthest to nearest to the camera. This performs expected behavior almost always. Why do depth testing for opaque objects then? For some reason some objects look better with it on (e.g. textured surfaces).
code for my bad idea patch
defupdate_frame(self, scene):
self.frame_buffer_object.clear(*self.background_color)
self.refresh_perspective_uniforms(scene.camera)
### MY CODE FIXME ###defz_key(mob):
# Assign a number to a three dimensional mobjects# based on how close it is to the camerareturnnp.linalg.norm(self.camera.get_position() -mob.get_center())
scene.mobjects=sorted(scene.mobjects, key=z_key, reverse=True)
##############formobjectinscene.mobjects:
ifnotmobject.should_render:
continueself.render_mobject(mobject)
forobjinscene.meshes:
formeshinobj.get_meshes():
mesh.set_uniforms(self)
mesh.render()
self.animation_elapsed_time=time.time() -self.animation_start_time
Additional media files
Images/GIFs
Both glowdots orbit the planet. The outer glowdot is depth tested. It doesn't glow, has weird border issues, and even blocks the planet. The inner glowdot glows, but due to the order added, only shows behind the planet.
Logs
Terminal output
The debug output contains the following repeated many times:
DEBUG \surface\geom.glsl does not exist. shader_wrapper.py:35
DEBUG C:\Users\colin\AppData\Local\Programs\Pyt shader_wrapper.py:35
hon\Python312\Lib\site-packages\manim\ren
derer\shaders\surface\geom.glsl does not
exist.
Description of bug / unexpected behavior
A glowdot can be made by nesting a bunch of gradually more transparent balls. The OpenGL renderer depth tester doesn't behave well with this situation and renders it as a dimmer, dull, no longer glowing dot. (Problems with transparancy is apparently a known common OpenGL problem, not directly a Manim problem).
Expected behavior
A glowing dot that correctly moves in front of and behind other objects. If I have a static camera pose, then I can be more careful about the order I add objects, but if my camera pose is dynamic, this won't work.
How to reproduce the issue
Code for reproducing the problem
Patch Solution I Made
The issue seems to be with the OpenGL depth tester in regards to transparent objects. My bad idea patch solution is in my scene construct to set depth testing for all opaque objects but disable depth testing for transparent objects. Then I modified the
update_frame
method of classOpenGLRenderer
to sort the mobjects in order of farthest to nearest to the camera. This performs expected behavior almost always. Why do depth testing for opaque objects then? For some reason some objects look better with it on (e.g. textured surfaces).code for my bad idea patch
Additional media files
Images/GIFs
Both glowdots orbit the planet. The outer glowdot is depth tested. It doesn't glow, has weird border issues, and even blocks the planet. The inner glowdot glows, but due to the order added, only shows behind the planet.Logs
Terminal output
The debug output contains the following repeated many times:System specifications
System Details
The text was updated successfully, but these errors were encountered: