All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.korlibs.math.IsAlmostZero.kt Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package korlibs.math

fun Double.isAlmostZero(): Boolean = kotlin.math.abs(this) <= 1e-19
fun Float.isAlmostZero(): Boolean = kotlin.math.abs(this) <= 1e-6




© 2015 - 2025 Weber Informatics LLC | Privacy Policy