I have a small question about 3D.
What follows is an example of my problem.
I have two points:
A: 12 4 5 B: 6 8 -10
I have another point: C: 5 6 7
I need to transform(?) point C so that the angle ABC is 48 degrees.
How do I do this? I would appreciate if someone can help me with the formulas or maybe even make the above example into a working one.
Another way to put it: How do I transform C.x, C.y, and C.z so that the angle ABC is 48 degrees?
I would really appreciate some help on this as I am stuck at the moment.
Side note: I already implemented a method for finding the angle:
float Angle( float x1, float y1, float z1,
float x2, float y2, float z2 )
{
float x, y, z;
CrossProduct( x1, y1, z1, x2, y2, z2, &x, &y, &z );
float result = atan2 ( L2Norm( x, y, z ),
DotProduct( x1, y1, z1, x2, y2, z2 ) );
return result;
}
You use it: Angle( B.x - A.x, B.y - A.y, B.z - A.z, C.x - B.x, C.y - B.y, C.z - B.z );