doodle/pkg/drawtool/shapes.go

12 lines
128 B
Go

package drawtool
// Shape of a stroke line.
type Shape int
// Shape values.
const (
Freehand Shape = iota
Line
Rectangle
)