言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

Mathf.Approximately

public static function Approximately(a: float, b: float): bool;

Description

類似している2 つのFloat型の値を比較します

Due to floating point imprecision it is not recommended to compare floats using the equal operator. eg. 1.0 == 10.0 / 10.0 might not return true.

	if (Mathf.Approximately(1.0, 10.0/10.0))
		print ("same");