Jump to content

translate to a vopsop


Oscar

Recommended Posts

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;

}

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...