04-08-2008 07:42 PM
04-09-2008 06:55 AM - edited 04-09-2008 06:55 AM
04-09-2008 07:03 AM
I had to do the same thing a few years ago...basically I wrote my own function in a formula node. That code now belongs to the people that hired me for the task, so I don't have the code to send you, but it was a pretty simply
int32 y;
if (x >180)
y = x -180;
else if (x < -180);
y = x +180;
else
y = x;
04-11-2008 04:21 PM