返回介绍

Mathf.Epsilon 最小正数

发布于 2019-12-18 15:37:59 字数 1647 浏览 1779 评论 0 收藏 0

JavaScript => static var Epsilon: float;
C# => static float Epsilon;

Description 描述

A tiny floating point value (Read Only).

一个很小的浮点数值。(只读)['epsiln]

The smallest value that a float can have different from zero.

大于0的最小浮点数。

With the following rules:

具有以下规则:

- anyValue + Epsilon = anyValue - anyValue - Epsilon = anyValue - 0 + Epsilon = Epsilon - 0 - Epsilon = -Epsilon

A value Between any number and Epsilon will result in an arbitrary number due to truncating errors.

任意数与Epsilon的之间值将导致在任意数发生截断误差。

See Also: Mathf.Approximately.

JavaScript:

// Compares two floating point numbers and return true if they are the same number.
//比较两个浮点数,如果它们是相同的数返回true,
// See also Mathf.Approximately, which compares floating point numbers so you dont have
// to create a function to compare them.
//参见Mathf.Approximately,在那里比较浮点数因此你不必创建一个函数来比较它们
 
function isEqual(a: float, b : float) {
	if(a >= b-Mathf.Epsilon && a <= b + Mathf.Epsilon)
		return true;
	else
		return false;
}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    bool isEqual(float a, float b) {
        if (a >= b - Mathf.Epsilon && a <= b + Mathf.Epsilon)
            return true;
        else
            return false;
    }
}

Mathf

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文