ActionScript 3 AS3圆形小数位

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 AS3圆形小数位相关的知识,希望对你有一定的参考价值。

var myNumber:Number = 123.4597890;
trace(roundDecimals(myNumber, 2));

function roundDecimals(num:Number, numDecimalPlaces:int):Number {
	return Math.round(num * Math.pow(10, numDecimalPlaces) ) / Math.pow(10, numDecimalPlaces);
}

// OUTPUT
// 123.46

以上是关于ActionScript 3 AS3圆形小数位的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 AS3图像映射,圆形,斜角滤波器

ActionScript 3 带有圆形预加载器微调器的AS3 Image Loader

ActionScript 3 As3:在小数点后显示一个固定位数的数字

ActionScript 3 AS3 SWFtrospection(as3swf)

ActionScript 3 AS3 TextField和StyleSheet示例(在ActionScript中创建)

[ActionScript 3.0] AS3.0 水面波纹效果