Quartet trio = new Quartet(targetb, targetb - todrop.getHeight() + dropAdapter.getHotspotPoint().y, minx, maxr, a);
list.add(trio);
return list;
} else if (Math.abs(dby - nr) < THRESHOLD_DISTANCE) {
List<Quartet> list = new ArrayList<Quartet>();
Anchor a = new HorizontalTopRelatedAnchor(target);
Quartet trio = new Quartet(nr, nr - todrop.getHeight() + dropAdapter.getHotspotPoint().y, minx, maxr, a);
list.add(trio);
return list;
} else if (Math.abs(dby - nu) < THRESHOLD_DISTANCE) {
List<Quartet> list = new ArrayList<Quartet>();
Anchor a = new HorizontalTopRelatedAnchor(target);
Quartet trio = new Quartet(nr, nr - todrop.getHeight() + dropAdapter.getHotspotPoint().y, minx, maxr, a);
list.add(trio);
a = new HorizontalTopUnrelatedAnchor(target);
trio = new Quartet(nu, nu - todrop.getHeight() + dropAdapter.getHotspotPoint().y, minx, maxr, a);
list.add(trio);
return list;
} else if (Math.abs(dby - nm) < THRESHOLD_DISTANCE) {
List<Quartet> list = new ArrayList<Quartet>();
Anchor a = new HorizontalTopRelatedAnchor(target);
Quartet trio = new Quartet(nr, nr - todrop.getHeight() + dropAdapter.getHotspotPoint().y, minx, maxr, a);
list.add(trio);
a = new HorizontalTopUnrelatedAnchor(target);
trio = new Quartet(nu, nu - todrop.getHeight() + dropAdapter.getHotspotPoint().y, minx, maxr, a);
list.add(trio);