Searched refs:mProjectionMatrix (Results 1 - 2 of 2) sorted by relevance

/external/eigen/demos/opengl/
H A Dcamera.cpp50 mProjectionMatrix = other.mProjectionMatrix;
215 mProjectionMatrix.setIdentity();
221 mProjectionMatrix(0,0) = invtan / aspect;
222 mProjectionMatrix(1,1) = invtan;
223 mProjectionMatrix(2,2) = -(mNearDist + mFarDist) / range;
224 mProjectionMatrix(3,2) = -1;
225 mProjectionMatrix(2,3) = -2 * mNearDist * mFarDist / range;
226 mProjectionMatrix(3,3) = 0;
235 return mProjectionMatrix;
[all...]
H A Dcamera.h105 mutable Eigen::Matrix4f mProjectionMatrix; member in class:Camera

Completed in 67 milliseconds