Get an array of the y coordinates of the vertices

Property definitions

geometry $ APolygon :: y_coordinates
	# Get an array of the y coordinates of the vertices
	private fun y_coordinates: Array[Float] do
		return [for p in points do p.y]
	end
lib/geometry/polygon.nit:34,2--37,4