
  You want to solve this nonlinear system of equations :
       (with A, B, C  [0..2pi])
 
        a sin(A) + b sin(B) + c sin(C) = d
        e sin(A) + f sin(B) + g sin(C) = h
        i sin(A) + j sin(B) + k sin(C) = l

  If you write :

               sin(A) = x
               sin(B) = y
               sin(C) = z
    
  You can rewrite the system :

        a x + b y + c z = d
        e x + f y + g z = h
        i x + j y + k z = l

 Which is a linear system of equation in x, y, z.

 Suppose, the solution of the system is :

                    x = r
                    y = s
                    z = t 

 you can write
               sin(A) = r    if r = 1    A = pi/2  
               sin(B) = s    if s = 1/2  B = pi/6 or B =  5pi/6
               sin(C) = t    ...
 
 The good values for r, s, t are : -1, -1/2, 0, 1/2, 1.

 The other values are difficult to write with our numbers.
