BitMiracle.LibJpeg.Classic.Internal.jpeg_color_converter.FIX C# (CSharp) 메소드

FIX() 개인적인 정적인 메소드

private static FIX ( double x ) : int
x double
리턴 int
        private static int FIX(double x)
        {
            return (int)(x * (1L << SCALEBITS) + 0.5);
        }