zntg/ui/font.go

12 lines
157 B
Go
Raw Normal View History

package ui
import (
"opslag.de/schobers/geom"
)
type Font interface {
Height() float32
Measure(t string) geom.RectangleF32
WidthOf(t string) float32
}