view pkg/models/system.go @ 955:920fba3f593f

chore: upgrading packages to latest
author Thomas Junk <thomas.junk@intevation.de>
date Tue, 16 Oct 2018 11:13:06 +0200
parents 83c271cb2344
children a244b18cb916
line wrap: on
line source

package models

type (
	Colour struct {
		R int     `json:"r"`
		G int     `json:"g"`
		B int     `json:"b"`
		A float32 `json:"a"`
	}
)

func isByteRange(i int) bool {
	return i >= 0 && i < 256
}

func (c Colour) IsValid() bool {
	return isByteRange(c.R) &&
		isByteRange(c.G) &&
		isByteRange(c.B) &&
		c.A >= 0 && c.A <= 1
}