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: 15.0.2.11458
Syntax
C#
public static double? MinNonNegative(
	double a,
	double b
)

Parameters

a
Type: SystemDouble
First value.
b
Type: SystemDouble
Second value.

Return Value

Type: NullableDouble
Mininum non negative value, or null.
See Also