Hi,
What would a better way of writing this be to get rid of the implicit cast warning?
if (@P.y < ch('pthreshold')
|| abs(@v.xyz) < ch('vthreshold'))
removepoint(0,@ptnum);
I want the absolute value of velocity x,y and z to = my vthreshold value. I get the implicit cast warning because the vthreshold is only a float and not a vector. Any help would be appreciated. As you may know, the expression works as it is now, I just want to get rid of the warning by writing it properly.
Thanks