-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add option for wireframe & wireframe+solid rendering of meshes #8538
Comments
this will be soon addressed by tagged components, see also #6889 some notes on implementation: Datastructures: Rendering: |
Maybe something like precomputing a separate line mesh on the CPU and render it with a depth bias to simulate a wireframe overlay, and fallback to wgpu if that's available. Or there is a WebGL extension that somehow overcomes this limitation... just dropping ideas. |
As a temporary work-around you can visualize the mesh connectivity by plotting line strips like so: rr.log(
"mesh_grid",
rr.LineStrips3D(
mesh.vertices[mesh.faces],
colors=[0, 0, 0],
radii=0.0005,
),
timeless=True,
) |
Is your feature request related to a problem? Please describe.
The ability to show edges grid on top of the mesh, currently you could only show vertices on top of the mesh with the "Points3D" visualiser, which is not very informative (also you can't change points color separately from the mesh color):
Describe the solution you'd like
A simple toggle that once turned on shows edges on top of the mesh surface, the result should look something like this:
The text was updated successfully, but these errors were encountered: