Mathf.Log10 基数10的对数

static function Log10 (f : float) : float

Description描述

Returns the base 10 logarithm of a specified number.

返回f的对数,基数为10。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		print(Mathf.Log10(100));
	}
}
// logarithm of 100 in base 10
//以10为底100的对数
// Prints 2

print(Mathf.Log10(100));
最后修改:2011年2月22日 Tuesday 20:22

本脚本参考基于Unity 3.4.1f5

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