
public interface Comparatore {
	// Ritorna -1 se <, 0 se ==, +1 se >
	int confronta(Punto a, Punto b);
}
