I mapped a 3D triangle to an arbitrary position in an arbitrary 2D plane using the lengths of 3 sides. So now the two triangles are exactly same but on different planes.
For a point inside the 2D triangle, I want to know its corresponding 3D point inside the 3D triangle, which I think is unique.
How do I achieve this? Is barycentric interpolation of the 2D-to-3D mapping precise? If yes, why?
Thank you in advance.