-
-
Notifications
You must be signed in to change notification settings - Fork 384
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
Actor2d/overlay layering support #3209
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you make a test ?
I doubt it will work when you change the layer number after a first rendering.
getViewPropsWithNestedProps()
is consumed by addMissingNodes()
which completes missing nodes but does not reorder children.
Does it ?
Good point @finetjul. I'll fix that. Meanwhile, do you know what's up with the CI? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel that deleting a node to recreate it might lead to problems in the future.
I wonder if addMissingChildren()
or addMissingNodes()
could be enhanced (with a new parameter? ) to optionally "sort" the children to match the provided list.
I feel that this ordering could be also extended to apply to any prop/actor...
This is a special case that requires sorting of children (vtkProp and that too the specialized vtkActor2D).
It could be but I don't see the benefit. All 3D props use the z-buffer for sorting. This is just a special case where we have 2D over/underlays that need to be sorted. I guess, you could argue a case where you want to mix-in 2D props with 3D ones but that can be done with the existing vtkActor and z-buffer mechanism. |
I meant something like that.( This has the advantage to:
|
@finetjul Here's what the code from my changeset does now: // Force all actor2D instances to be sorted and re-pushed as scenegraph nodes.
// This ensures that they are rendered in the correct order.
const actors2D = model.renderable.getActors2D();
actors2D.forEach((ac) => {
const vn = publicAPI.getViewNodeFor(ac);
if (vn !== undefined) {
publicAPI.removeNode(vn);
}
});
publicAPI.addMissingNodes(model.renderable.getViewPropsWithNestedProps()); Since the |
8573e10
to
5aca264
Compare
The problem I see is that by deleting the nodes (removeNode) to recreate them just after (addMissingNode):
While this could be challenged whether the performance impact is acceptable or not (it's just for vtkActor2D). It is just that it is not "required" to do all of these deletions and creations. |
This change adds support for sorting 2D actor overlays based on their `layerNumber` property.
This ensures that they are rendered in the correct order for every frame even if their layer number changes between frames.
This change adds an argument to `addMissingNodes` to ensure that the view node ordering is maintained. By default, ordering is not maintained. However, for nodes of type `vtkActor2D`, where layering requires a specific order, the node ordering is enforced.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
🎉 This PR is included in version 32.13.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Context
vtkActor2D
is a prop that can be used to render overlay/underlay geometry with the existing 3D view. When multiple 2D actors are added to the renderer, the order of rendering was dependent on the order in which they were added. However, this can be problematic in declarative style applications like react-vtk-js.This change adds support for the
layerNumber
property that can be used to set the order in which the props are overlaid. 2D actors with higher layer numbers are rendered on top (a.k.a in the front).Results
The following code adds two 2D actors.
By default, both the props have a
layerNumber == 0
, and the cone will be rendered on top.However, when the layerNumber is set,
the cone is pushed back.
Moreover, the foreground 2D actors are sorted independently of the background 2D actors.
In this case, there are two spheres in the foreground and one in the background. The sphere added second to the renderer has a lower layer number in the foreground, hence it gets rendered below the other foreground sphere but above the background sphere.
Changes
PR and Code Checklist
npm run reformat
to have correctly formatted codeTesting