Merged
Conversation
gcmartins
reviewed
Feb 2, 2026
pulse/interface/viewer_3d/render_widgets/results_render_widget.py
Outdated
Show resolved
Hide resolved
JacsonGilVargas
approved these changes
Feb 2, 2026
Collaborator
JacsonGilVargas
left a comment
There was a problem hiding this comment.
I conducted some tests using the render manipulation tools, and everything worked fine. A minor suggestion, I think we could disable the "Selection" icon on the results render instead of hiding it. Excellent, @R0drigoSchwartz.
gcmartins
reviewed
Feb 4, 2026
gcmartins
approved these changes
Feb 4, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the implementation of the renderer tools, which allows the user to manipulate the renderer, such as selecting, rotating, zooming and grabbing. To accomplish these functionalities, we currently have a set of four tools:
Selection tool: used to select surfaces, volumes, nodes, points...
The selection tool is only available in the geometry and mesh renderers, not in the results renderer.
Grab tool: used to move the renderer camera.
The grab tool is available for all renderers.
Rotation tool: used to rotate the renderer camera.
The rotation tool is available for all renderers.
Zoom tool: used to zoom the renderer camera.
The zoom tool is available for all renderers.
Now, an user who doesn't have a mouse can manipulate the renderer, by switching between tools using his touchpad.
The implementation of this feature was made implementing the RenderTool class. Now, if we want to create new tools, we just need to specializes this class, override the methods of the ArcballCameraInteractorStyle and implement the logic of the tool.