function verticalSorter( a, b ) {
  return a.position.y - b.position.y || a.position.x - b.position.x;
}