Imager.sPixel._Byte2Single C# (CSharp) Method

_Byte2Single() private static method

Converts a byte color component to single floating point.
private static _Byte2Single ( byte value ) : float
value byte The value.
return float
        private static float _Byte2Single(byte value)
        {
            return (value / 255f);
        }