Mathf.Approximately Manual     Reference     Scripting  
Scripting > Runtime Classes > Mathf
Mathf.Approximately

static function Approximately (a : float, b : float) : boolean

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.

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

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Example() {
if (Mathf.Approximately(1.0F, 10.0F / 10.0F))
print("same");

}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Example():
if Mathf.Approximately(1.0F, (10.0F / 10.0F)):
print('same')