mirror of
https://github.com/photoprism/photoprism.git
synced 2026-01-23 10:26:03 +00:00
11 lines
123 B
Go
11 lines
123 B
Go
package vector
|
|
|
|
import "math"
|
|
|
|
const (
|
|
Epsilon = math.SmallestNonzeroFloat64
|
|
)
|
|
|
|
func NaN() float64 {
|
|
return math.NaN()
|
|
}
|