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