示例#1
0
 public static float stbtt__cuberoot(float x)
 {
     if ((x) < (0))
     {
         return(-(float)(CRuntime.Pow(-x, 1.0f / 3.0f)));
     }
     else
     {
         return((float)(CRuntime.Pow(x, 1.0f / 3.0f)));
     }
 }