double longueurPartielle = 0;
double distanceInterPts = 0;
for (int i=0; i<elements.size(); i++){
LigneElementaire element = elements.get(i);
distanceInterPts = element.getLongueur();
if (longueurPartielle + distanceInterPts > abscisse){
boolean recupere = element.recupererPosition(point, angle, abscisse - longueurPartielle);
surCourbe = recupere;
break;
}
longueurPartielle += distanceInterPts;
}