BitMiracle.LibJpeg.Classic.Internal.my_merged_upsampler.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));
        }
    }