I have a dataset with 2 or more input fields “f1”, “f2”, “f3” etc. Say all fields have values in [0.1]. How can I apply the same filter to all of the fields simultaneously without copying the filter?
E.g. applying a “Contour” filter with one isoline at 1.0 that gets “f1” as input and then apply the same filter with the same settings also to “f2”, “f3”, etc.
I found another way in the meantime (for my very specific problem)… Setup: I have a set of triangles where each node has a value assigned to it (integer membership to a domain decomposition = region) and want to mark the region boundaries. It is basically a DG-style mesh produced by Gridap.jl when writing a cell field, see, e.g., here. Problem: Since it’s a set of unconnected triangles, we cannot apply a contour filter with iso=[1,2,3,...]. Fix: “Apply Warp to 3D” filter for the region membership s.t. every region has a different z component. Then apply the “Clean” filter to glue the triangles of each regions together. Then apply the “Extract Region Surface” filter folowed by the “Features Edges (only boundary edges enabled)” to get all region boundaries.