CinnamonMetal Posted March 28, 2018 Share Posted March 28, 2018 (edited) How can I match the points of the blue sphere to that of the gray sphere being represented behind in the screen capture ? I'm using a RaySOP at this point. Edited March 28, 2018 by CinnamonMetal Quote Link to comment Share on other sites More sharing options...
StepbyStepVFX Posted March 28, 2018 Share Posted March 28, 2018 (edited) I would do the same : raysop. Or with a point wrangle, I would use xyzdist to find the closest primitive of the second geo, the UV where the intersection is, and then use primuv to find the position of this intersection, and then move the point toward that intersection. Wire your sphere in first input, and your refrence sphere in second input of the wrangle. int primcross; vector uvcross; vector newpos; float distcross = xyzdist(1, @P, primcross, uvcross); newpos = primuv(1, ‘’P’’, primcross, uvcross); @P =newpos; if the topology of your two spheres are matching, maybe you can try a point wrangle and just match the position of your first input geo to the point having the same point number on the second input geo. But you need same topology AND same ordering of points. Edited March 28, 2018 by StepbyStepVFX 1 Quote Link to comment Share on other sites More sharing options...
CinnamonMetal Posted March 28, 2018 Author Share Posted March 28, 2018 Thanks, I may have too model what I need 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.