Sander Schobers
ff51378aff
Go image can be reconstructed from ui.Image/allg5.Bitmap. Changed allg5.Scale from interface to struct.
13 lines
136 B
Go
13 lines
136 B
Go
package ui
|
|
|
|
import (
|
|
"image/color"
|
|
|
|
"opslag.de/schobers/geom"
|
|
)
|
|
|
|
type DrawOptions struct {
|
|
Tint color.Color
|
|
Scale *geom.PointF32
|
|
}
|