ref: e1fab0877ca6cb0632e5203d99591579d3b749ce
dir: /layout/layout.go/
package layout
import (
"image"
)
type Interface interface {
Arrange([]Element)
}
type Element interface {
Geom() (orig, extent image.Point)
}
type Inline struct {
}
func (inl Inline) Arrange([]Element) {}