Appearance
KBE3D / KBCore / Cesium / Math / lessThanOrEquals
函数: lessThanOrEquals()
lessThanOrEquals(
left:number,right:number,absoluteEpsilon:number):boolean
Determines if the left value is less than or equal to the right value. If the two values are within <code>absoluteEpsilon</code> of each other, they are considered equal and this function returns true.
参数
left
number
The first number to compare.
right
number
The second number to compare.
absoluteEpsilon
number
The absolute epsilon to use in comparison.
返回
boolean
true if left is less than right or if the the values are nearly equal.
