package unit

// Length is something that can represent a distance, offset or position.
type Length interface {
	Millimeters() Millimeter
}