BEPUutilities2.MathHelper.BinarySign C# (CSharp) Method

BinarySign() private method

private BinarySign ( float x ) : float
x float
return float
        public static float BinarySign(float x)
        {
            return x < 0 ? -1 : 1;
        }