Click or drag to resize

UtilMinNonNegative Method

Return the minimum non negative value of the two given values, or null if neither of them are non negative.

Namespace: Demo3D.Common
Assembly: Demo3D.Common (in Demo3D.Common.dll) Version: 19.01.00
Syntax
C#
public static double? MinNonNegative(
	double a,
	double b
)

Parameters

a  Double
First value.
b  Double
Second value.

Return Value

NullableDouble
Mininum non negative value, or null.
See Also