def cartesienne(u,A):
     a = -u[1]
     b = u[0]
     c = u[1]*A[0] - u[0]*A[1]

     return a, b, c
