The MathUtils3D class is used to create mathematical utilities.

MathUtils3D 类用于创建数学工具。

构造函数

属性

Deg2Rad: number = ...

Coefficient for converting degrees to radians.

角度转弧度系数。

MaxValue: number = 3.40282347e+38

Default maximum value for floating-point numbers.

浮点数默认最大值。

MinValue: number = -3.40282347e+38

Default minimum value for floating-point numbers.

浮点数默认最小值。

zeroTolerance: number = 1e-6

Tolerance for single-precision floating-point (float) zero.

单精度浮点(float)零的容差。

方法

  • 参数

    • value: number

      The input value.

    返回 number

    The reciprocal of the square root of the input value.

    Calculate the reciprocal of the square root of a non-zero number.

    计算一个非0数的平方根的倒数。

  • 参数

    • v: number

      The value to be checked.

    返回 boolean

    Whether the value is approximately zero.

    Determines if a value is approximately zero within the tolerance range.

    是否在容差的范围内近似于0。

  • 参数

    • n1: number

      The first value to compare.

    • n2: number

      The second value to compare.

    返回 boolean

    Whether the two values are approximately equal.

    Determines if two values are approximately equal within the tolerance range.

    两个值是否在容差的范围内近似相等Sqr Magnitude。