ref: a8bb4e36f51179ad6b544d2236600b88aab371d2
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) {}