Appearance
KBE3D / KBCore / Cesium / Math / lessThan
函数: lessThan()
lessThan(
left:number,right:number,absoluteEpsilon:number):boolean
Determines if the left value is less than the right value. If the two values are within <code>absoluteEpsilon</code> of each other, they are considered equal and this function returns false.
参数
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 by more than absoluteEpsilon. false if left is greater or if the two values are nearly equal.
