- How to get the skin mesh nodes from an assembly body instead of every part's surface.
- I used the following snippet:
model = dpf.Model(file)
mesh = model.metadata.meshed_region
skin_mesh = dpf.operators.mesh.skin(mesh)
skin_nodes = skin_mesh.outputs.nodes_mesh_scoping()