12 lines
128 B
Go
12 lines
128 B
Go
|
package drawtool
|
||
|
|
||
|
// Shape of a stroke line.
|
||
|
type Shape int
|
||
|
|
||
|
// Shape values.
|
||
|
const (
|
||
|
Freehand Shape = iota
|
||
|
Line
|
||
|
Rectangle
|
||
|
)
|