Box2D.Common.Vec3.FloatToIntBits C# (CSharp) 메소드

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

private static FloatToIntBits ( float number ) : int
number float
리턴 int
        private static int FloatToIntBits(float number)
        {
            return BitConverter.ToInt32(BitConverter.GetBytes(number), 0);
        }