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