mirror of
https://github.com/fishtailstudio/imgo
synced 2025-09-27 04:46:11 +08:00
10 lines
94 B
Go
10 lines
94 B
Go
package imgo
|
|
|
|
// Flip Type
|
|
type FlipType int
|
|
|
|
const (
|
|
Vertical FlipType = iota
|
|
Horizontal
|
|
)
|