Click or drag to resize

MathdApproximately Method

Tells if the two double values look the same in the geme's units.

Namespace:  KSPDev.MathUtils
Assembly:  KSPDev_Utils.1.1 (in KSPDev_Utils.1.1.dll) Version: 1.1 for KSP v1.6+
Syntax
C#
public static bool Approximately(
	double a,
	double b
)
Request Example View Source

Parameters

a
Type: SystemDouble
The first value to test.
b
Type: SystemDouble
The second value to test.

Return Value

Type: Boolean
true if the values difference is negligible from the game's perspective.
Remarks
This method gives the same logic as Mathf.Approximately, but for the double values.
See Also