
Some times I want to add an extra plus or minus factor, especially when I create objects in space, where their relative position is specified but I want to add an element of randomness.
So here it is, a cute one liner:
+ Code Snippet`This generates a random Plus or Minus 1 by =C=
function rndpm()
li_pm = -1 + RND(2)
endFunction li_pm
I hope you enjoy it and that it will get a small place in your code library. and in your hearts!

=C=