main.go: symmetry stub

This commit is contained in:
Codeberg 2019-05-28 12:16:55 +02:00 committed by Holger Waechtler
parent 62d613358a
commit a0d27e7e33

View File

@ -99,6 +99,9 @@ func rgb(s string) *RGB {
return c
}
func (c *RGB) to_hsv() *HSV {
}
func (c *HSV) to_rgb() *RGB {
h := int((c.h / 60))
f := c.h / 60 - h