vrman Posted September 27, 2017 Share Posted September 27, 2017 (edited) Hey guys i have an group of edges , i want to make another group and add just one of those edge from first group to it . is there any trick for doing this ? thanks Edited September 27, 2017 by vrman Quote Link to comment Share on other sites More sharing options...
animatrix Posted September 27, 2017 Share Posted September 27, 2017 Edge groups are not as easy to work in Houdini as point/prim groups. You can do this using a Python SOP though: edge = geo.findEdgeGroup("edgegroup").edges()[0] newgroup = geo.createEdgeGroup("one") newgroup.add(edge) 2 Quote Link to comment Share on other sites More sharing options...
vrman Posted September 28, 2017 Author Share Posted September 28, 2017 great , thanks alot Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.