add float rounder to 15th

This commit is contained in:
Zhiger Kalymov 2023-02-16 16:27:16 +06:00
parent 6b08f978b6
commit 40d338db34

View file

@ -3,6 +3,7 @@ package captcha
import ( import (
"fmt" "fmt"
"image/color" "image/color"
"math"
"testing" "testing"
) )
@ -55,7 +56,7 @@ func TestConversionRGB(t *testing.T) {
t.Fatal(err) t.Fatal(err)
} }
var blue1 color.Color = hsva{h: 240.0 / 360.0, s: 0.75, v: 0.8, a: uint8(255)} var blue1 color.Color = hsva{h: fl(240.0 / 360.0), s: 0.75, v: 0.8, a: uint8(255)}
var blue2 color.Color = color.RGBA{R: uint8(51), G: uint8(51), B: uint8(204), A: uint8(255)} var blue2 color.Color = color.RGBA{R: uint8(51), G: uint8(51), B: uint8(204), A: uint8(255)}
if err := eq(blue1, blue2); err != nil { if err := eq(blue1, blue2); err != nil {
@ -79,3 +80,9 @@ func eq(c0, c1 color.Color) error {
} }
return nil return nil
} }
func fl(n float64) float64 {
out := math.Pow10(15)
rnd := int(n*out + math.Copysign(0.5, n*out))
return float64(rnd) / out
}