Oscar Posted November 8, 2012 Share Posted November 8, 2012 im trying to translate this into a vopsop not having any luck. any help would be appreciated. steerSeparation(string pccloudpath =""; float radius = 1.0; float forceScale = 1.0) { int hnd = pcopen ( pccloudpath, "P", P, radius, 99999 ); vector separation = {0,0,0}; int neighbours = 0; while(pciterate(hnd)) { neighbours++; vector otherP; pcimport(hnd, "P", otherP); separation = separation + normalize(P - otherP) / length(P - otherP); } separation /= neighbours; accel = separation * forceScale; } 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.