From 40d338db34af1373e356b8c26cb032aa956fcf40 Mon Sep 17 00:00:00 2001 From: Zhiger Kalymov Date: Thu, 16 Feb 2023 16:27:16 +0600 Subject: [PATCH] add float rounder to 15th --- hsva_test.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/hsva_test.go b/hsva_test.go index 2f4e353..e015694 100644 --- a/hsva_test.go +++ b/hsva_test.go @@ -3,6 +3,7 @@ package captcha import ( "fmt" "image/color" + "math" "testing" ) @@ -55,7 +56,7 @@ func TestConversionRGB(t *testing.T) { 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)} if err := eq(blue1, blue2); err != nil { @@ -79,3 +80,9 @@ func eq(c0, c1 color.Color) error { } 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 +}