Stefan
Stefan

Reputation: 43575

convert camera position

I have a function from an external lib which takes the following camera parameters:

How can I calculate these parameters from the ones I got:

?

And on a related subject: what's a 'camera roll' anyway? Is there somewhere a picture explaining this?

Upvotes: 1

Views: 359

Answers (1)

PiN
PiN

Reputation: 126

x,y,z coordinates for "center of orbit"

  • I guess this is up to you, let's call it "centerOrbit"

orbital radius

  • orbitalRadius = Length(cameraPos - centerOrbit)

x,y,z vector from "center of orbit" to "camera direction"

  • (cameraPos - centerOrbit) / orbitalRadius

camera roll

  • this could be your "decline angle of the camera" (just guessing again)
  • for explanation of what is a camera roll, try googling "yaw pitch roll"

Upvotes: 2

Related Questions