Journeyman
Journeyman

Reputation: 10281

Graphics - equation to convert 3d point to 2d projection

I am a graphics novice, but am playing with HTML5 Canvas, javascript and some shapes and images. If I have a camera at point C.x,C.y,C.z, and a point at P.x,P.y,P.z, what is the easiest way to convert the point to a 2d point so I can render an image at that point with the correct scaling so my perspective is correct? I'm after the equations, not a library.

Thanks!

Upvotes: 5

Views: 22647

Answers (1)

Bernd Elkemann
Bernd Elkemann

Reputation: 23560

It is called the Perspective Projection and the formula you seek is just the matrix-multiplication found here:

http://en.wikipedia.org/wiki/3D_projection#Perspective_projection

Upvotes: 3

Related Questions