vote up 1 vote down star

I'm trying to more or less recreate Johnny Lee's Wii head tracking app, but using an augmented reality toolkit for the tracking, and WPF for graphics. To do this, I need to create a perspective camera using the top, bottom, right, and left parameters to create my viewing frustum, instead of field of view and aspect ratio (to those familiar with OpenGL, I want to use the WPF equivalent of glFrustum instead of gluPerspective)

The problem is, those options don't seem to be available on WPF's PerspectiveCamera class. I could probably create the projection matrix manually if I had to and use MatrixCamera, but I'd like to avoid that. Does anyone know of a better way to do this?

flag

73% accept rate
What do you mean by 'better'? – genpfault Aug 20 at 21:06
I meant some method that does the math for me, instead of forcing me to do it like I had to in my answer below. – Jonathan Schuster Aug 24 at 18:46

1 Answer

vote up 0 vote down check

I never did find a built-in way to do this, so I wrote my own. The math behind it can be found in the OpenGL glFrustum docs. If anyone else ever runs into this problem, this should work for you:

public Matrix3D CreateFrustumMatrix(double left, double right, double bottom, double top, double near, double far)
{
    var a = (right + left) / (right - left);
    var b = (top + bottom) / (top - bottom);
    var c = -(far + near) / (far - near);
    var d = -2 * far * near / (far - near);

    return new Matrix3D(
    	2 * near / (right - left), 0,                         0, 0,
    	0,                         2 * near / (top - bottom), 0, 0,
    	a,                         b,                         c, -1,
    	0,                         0,                         d, 0);
}

Just set MatrixCamera.ProjectionMatrix to the return value of that method, and you're all set.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.