Get an array of the x coordinates of the vertices

Property definitions

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