I want to determine the coordinates of vertices of a triangle in geometry 3D, knowing the measure of interior angles are $15^\circ$, $30^\circ$, $135^\circ$. and the length of one side is 3. Please help me. If the measure of interior angles are $30^\circ$, $30^\circ$, $120^\circ$ and the length of one side is 3, I use Maple, I find the other sides are 3 and $\sqrt{3}$. And then, I determine the coordinates of vertices of this triangle.
restart:
a:=3:
eq1:=(a^2+b^2-c^2)/(2*a*b):
eq2:=(b^2+c^2-a^2)/(2*b*c):
eq3:=(c^2+a^2-b^2)/(2*a*c):
solve([eq1=cos(30*Pi/180),eq2=cos(30*Pi/180),eq3=cos(120*Pi/180)],[c,b]);