skip to main |skip to sidebar

2008年2月16日

[AS3,Math]立方根

/**
* 立方根
*
* @param v 一个数字。
* @return 数字的立方根。
*/

public static function cbrt(value:Number):Number {
return Math.pow(value, 1/3);
}

本文链接:http://assnippets.blogspot.com/2008/02/as3math_16.html转载请注明出处。

相关文章:

0评论: