trying to find absolute value and i thought there was a simple way to just invert the sign with '~' or something.
float newValue = oldValue * -1;
or
float newValue = -(oldValue); //() aren't needed, I just use them out of habit