Java: Setting Quaternionf towards a specific position

101 Views Asked by At

I have a problem. I have created an object that will move in X, Y, Z axes in changing directions. I want to use the Quaternionf class as my tool. Knowing the X, Y, Z coordinates of the object and the coordinates of the target point, I want to set Quaternionf towards this point (from the position of the object, of course). The direction from the object point should always be towards the target point. I am attaching pictures showing what I mean.

enter image description here

enter image description here

As you can see, the direction of the object is always facing the target. I will be grateful for your help!

1

There are 1 best solutions below

1
On

There's no one unique rotation that faces the target, but you can use Quaternionf#lookAlong(Vector3fc, Vector3fc), and for the dir parameter use targetPos.sub(initialPos).