dfmn Posted March 9, 2016 Share Posted March 9, 2016 (edited) Hey! So Im trying to figure out how to sort the points from Points to Volume sop. What I wanna do is just what the picture shows, Tried sort sop but with no success. Any tips? https://dl.dropboxusercontent.com/u/10345256/points_from_volume_sort.hiplc Edited March 9, 2016 by dfmn Quote Link to comment Share on other sites More sharing options...
mart1jn Posted March 9, 2016 Share Posted March 9, 2016 In this specific case you can sort along the vector (0.1,1,0.01). For something more general you could use a wrangle node with the following, and then sort by the attibute 'sort' . float mult = 100.0; f@sort = @P.z + @P.x*mult + @P.y*mult*mult; This works for geometry with a size smaller than the 'mult' value. I don't know how to make this work for any size. 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.