Werner Posted March 18, 2015 Share Posted March 18, 2015 In Softimage when you create a shape on an object, it creates a point cluster (group), and this makes it easy to manipulate only those points in ICE. What would be the easiest way to create a point group from an edit sop (with Soft radius points included) or from an imported shape from zbrush. In short, I need to isolate all the points that were translated while creating a shape. Quote Link to comment Share on other sites More sharing options...
ophamletsen Posted March 18, 2015 Share Posted March 18, 2015 If youre geometry has a rest attribute you could add something like this in an attribute wrangle sop: if(@P != @rest){ setpointgroup(0,"moved",@ptnum,1); } Simply compares your current point positions to the rest position and groups the points that are not matching. Quote Link to comment Share on other sites More sharing options...
Pazuzu Posted March 18, 2015 Share Posted March 18, 2015 Or if(@P != @rest) @group_moved = 1; 1 Quote Link to comment Share on other sites More sharing options...
ophamletsen Posted March 18, 2015 Share Posted March 18, 2015 Nice, I wasn't aware of that short-hand for setting group memberships 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.