karen Posted May 15, 2023 Share Posted May 15, 2023 in attached file, I have a group1 of points, I apply peak to the group only but need each point to have a randomly different peak distance (a side note/question: any idea why some are going up and others down?) different_peak_for_each_group_point.hiplc Quote Link to comment Share on other sites More sharing options...
animatrix Posted May 15, 2023 Share Posted May 15, 2023 Your normals are badly formed, that's why you get that result. You can't vary the peak distance per point using the Peak SOP but you can do it using a Point Wrangle: float s = rand ( @ptnum + ch("seed") ); vector n = { 0, 1, 0 }; @P += ch("amount") * s * n; 1 Quote Link to comment Share on other sites More sharing options...
hannes603 Posted May 16, 2023 Share Posted May 16, 2023 or in for each different_peak_for_each_group_point.hiplc 1 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.