}
protected void lierSortieEntree(int section1, int sortie, int section2, int entree){
PointSortie pointSortie = sections.get(section1).getSorties().get(sortie);
PointEntree pointEntree = sections.get(section2).getEntrees().get(entree);
pointSortie.lier(pointEntree);
if (pointSortie.verifierLien()>DISTANCE_CONTACT){
System.out.println("Lien incorrect entre sortie : " + pointSortie.x + "/" + pointSortie.y
+ " et entr�e : " + pointEntree.x + "/" + pointEntree.y);
}
}