this is my first post.. I hope this good
I have 1 triangle in space (3D)... and I know all data except the coordinates of 3er point(vertex)... for example this:

then:

x y z
v1 = (1.42, 0.239, 0.032)
v2 = (2.97, 1.500, 0.032)
v3 = (2.33, ???, ????)
A = 2
B = 0.99 = 1
C = 2.232
a = 63.664°
b = 26.336°
c= 90°
with all this data I thought that with a simple trigonometric identities I could achieve the goal...BUT NO!
then I check this:
How to find the third coordinate of a right triangle given 2 coordinates and lengths of each side
and this: Find the third vertex of a triangle in $3D$
3d geometry: triangle 2 points known, find 3rd point
and all information in
How to find coordinates of 3rd vertex of a right angled triangle when everything else is known?
with all that information I found this: http://awaismunir.net/universal/tangents/3rd-third-vertext-calculate-right-angled-triangle.gif
then I deduced the following:
v3cox = ((-v1.y * opposite) + (v2.y * opposite) + (adjacent * v1.x)) / adjacent
v3coy = ((v1.co * opposite) - (v2.x * opposite) + (adjacent * v1.y)) / adjacent
and this work in 2d!....
then I tried with:
v3coz = ((v1.z * opposite) - (v2.z * opposite) + (adjacent * v1.z)) / adjacent
or
v3coz = ((v1.z * opposite) + (v2.z * opposite) - (adjacent * v1.z)) / adjacent
or
v3coz = ((v1.z * opposite) + (v2.z * opposite) + (adjacent * v1.z)) / adjacent
but any of this "coz" work
I hope you can help me
----------------------------- UPDATE
AFTER @Martigan IDEAS I understand that I have infinite number of points that will satisfy the same conditions:

what's up if I know some data about v3.. for example v3x = 2.33 v3y = ?? and v3.z =??
v−3v−2 in this case ... who is v??? v3???
following your steps I do:
(v−3v−2) * (v2 - v1)=0 and
(v−3v−2) * (v3-v2)=0
is it correct? but what?? I need to find new "v"...yes???..
sorry I'm not a mathematician
thanks
– Diego Quevedo Jan 21 '15 at 20:51what's up if I know some data about v3.. for example v3x = 2.33 v3y = ?? and v3.z =?? – Diego Quevedo Jan 21 '15 at 21:49