 | FloatSmoothenerIsLess Method |
Indicates if value A is less than value B.
Namespace:
Slash.Unity.DataBind.Foundation.Providers.Smootheners
Assembly:
Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntaxprotected override bool IsLess(
float valueA,
float valueB
)
Protected Overrides Function IsLess (
valueA As Single,
valueB As Single
) As Boolean
protected:
virtual bool IsLess(
float valueA,
float valueB
) override
abstract IsLess :
valueA : float32 *
valueB : float32 -> bool
override IsLess :
valueA : float32 *
valueB : float32 -> bool
Parameters
- valueA
- Type: SystemSingle
First value. - valueB
- Type: SystemSingle
Second value.
Return Value
Type:
BooleanTrue if first value is less than second value; otherwise, false.
See Also