Legacy Documentation: Version 5.1
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

Mathf.Approximately

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

Parameters

Description

Compares two floating point values if they are similar.

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");