Ciao a tutti

Ho un problema con:
codice:
delta_x = 2;
delta_y = -1;
x1 = 1 + delta_x;
y1 = 2 + delta_y;
x2 = 4 + delta_x;
y2 = 3 + delta_y;
x = x1 + t2*(x2 - x1);
y = y1 + t2*(y2 - y1);
Mi dice che c'è un errore di ricorsione. Non capisco dove...