Jump to content

Simple camera look at point function


Ywa
 Share

Recommended Posts

Hi everyone,

 

I've been trying to get a simple camera look at point function working, but I ended up rewriting it 20 times or so. While it's a relatively easy-to-write function.

 

The problem is simple. I have my camera position, and a 3D point to look at. How do I calculate the rotation/angles for the camera? It would be awesome if someone could write an example function (in C++ or any other language), any help is welcome though.

 

Thanks in advance.

 

- Ywa

Link to comment
Share on other sites

The simplest way would be to create a pivot, move that to the x,y,z co-ordinate you want the camera to point at and then use PointEntity:

 

PointEntity(Camera, Pivot, 3, 1.0, 0.0)

AMD Bulldozer FX-4 Quad Core 4100 Black Edition

2 x 4GB DDR3 1333Mhz Memory

Gigabyte GeForce GTX 550 Ti OC 1024MB GDDR5

Windows 7 Home 64 bit

 

BlitzMax 1.50 • Lua 5.1 MaxGUI 1.41 • UU3D Pro • MessiahStudio Pro • Silo Pro

3D Coat • ShaderMap Pro • Hexagon 2 • Photoshop, Gimp & Paint.NET

 

LE 2.5/3.4 • Skyline UE4 • CE3 SDK • Unity 5 • Esenthel Engine 2.0

 

Marleys Ghost's YouTube Channel Marleys Ghost's Blog

 

"I used to be alive like you .... then I took an arrow to the head"

Link to comment
Share on other sites

Edit: Solved. I was so stupid for not calling the SetLookAtPoint function. Thanks guys! :)

 

I must be doing something wrong. I have this code in my SetLookAtPoint function.

 


procedure CCamera.SetLookAtPoint( vecLookAtPos : TVec3D );
var
 vPivot : TPivot;
begin
 //Hacky method (TODO: Make less hacky)
 vPivot := CreatePivot();
 PositionEntity(vPivot,vecLookAtPos);
 PointEntity(self.Entity,vPivot,3,1.0,0.0);
 FreeEntity(vPivot);
end;

self.Entity is the camera entity

 

The camera doesn't seem to rotate.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...