mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
14 lines
231 B
Go
14 lines
231 B
Go
package vector
|
|
|
|
import "math"
|
|
|
|
const (
|
|
// Epsilon is the smallest non-zero float used as a numerical tolerance.
|
|
Epsilon = math.SmallestNonzeroFloat64
|
|
)
|
|
|
|
// NaN returns a quiet NaN value.
|
|
func NaN() float64 {
|
|
return math.NaN()
|
|
}
|