vrman 0 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 Share this post Link to post Share on other sites
animatrix 287 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 Share this post Link to post Share on other sites
vrman 0 Posted September 28, 2017 great , thanks alot Share this post Link to post Share on other sites