/**
  * Point to a specific view
  *
  * @param view The {@link View} to Showcase
  */
 public void pointTo(View view) {
   float x = AnimationUtils.getX(view) + view.getWidth() / 2;
   float y = AnimationUtils.getY(view) + view.getHeight() / 2;
   pointTo(x, y);
 }