Property definitions

geometry $ Projection :: defaultinit
# Projection of an edge of a `ConvexPolygon` used for intersection test
private class Projection
	var min: Float is writable
	var max: Float is writable

	fun overlap(other: Projection): Bool do return not (min > other.max or other.min > max)
end
lib/geometry/polygon.nit:283,1--289,3