Mathf.ClosestPowerOfTwo 最近的二次方

static function ClosestPowerOfTwo (value : int) : int

Description描述

Returns the closest power of two value.

返回距离value最近的2的次方数。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		Debug.Log(Mathf.ClosestPowerOfTwo(7));
		Debug.Log(Mathf.ClosestPowerOfTwo(19));
	}
}
// prints 8
Debug.Log(Mathf.ClosestPowerOfTwo(7));

// prints 16
Debug.Log(Mathf.ClosestPowerOfTwo(19));
最后修改:2011年2月23日 Wednesday 22:29

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。