None of the answers fitted my needs. Here's what I had:
A sinus in degree (not radiant).
This is how you turn it back into a degree angle:
double angle = Math.toDegree(Math.asin(sinusInDegree));
Explanation: If you have 2 sides of a triangle, it's the only solution that worked for me. You can calcluate everything using the normal degree metric, but you have to convert the Math.asin()
back to degree for the right result. :)