49 if (Math::abs(tmpForward.
getX()) < Math::EPSILON && Math::abs(tmpForward.
getZ()) < Math::EPSILON) {
54 tmpUpVector = Vector3::computeCrossProduct(tmpSide, tmpForward).
normalize();
68 auto nearPlane =
zNear;
71 2.0f / (rightPlane - leftPlane),
76 2.0f / (topPlane - bottomPlane),
81 -2.0f / (farPlane - nearPlane),
83 -(rightPlane + leftPlane) / (rightPlane - leftPlane),
84 -(topPlane + bottomPlane) / (topPlane - bottomPlane),
85 -(farPlane + nearPlane) / (farPlane - nearPlane),
92 auto aspect =
static_cast<float>(this->
height) /
static_cast<float>(this->
width);
93 auto rad =
fovX * 3.1415927f / 180.0f;
94 auto _height = Math::cos(0.5f * rad) / Math::sin(0.5 * rad);
95 auto _width = _height * aspect;
156 auto reshaped =
false;
159 if (this->width != _width || this->height != _height) {
164 this->width = _width;
165 this->height = _height;
180 0 + (_height / 2.0f),
Matrix4x4 projectionMatrix
Matrix4x4 modelViewMatrix
static STATIC_DLL_IMPEXT Vector3 defaultUp
void update(int contextIdx, int32_t width, int32_t height)
Sets up camera while resizing the view port.
Matrix4x4 mvpInvertedMatrix
Matrix4x4 & computeModelViewMatrix()
Computes projection matrix for given look from, look at and up vector.
static Vector3 computeUpVector(const Vector3 &lookFrom, const Vector3 &lookAt)
Computes the up vector for given look from and look at vectors.
float orthographicFrustumScale
@ FRUSTUMMODE_PERSPECTIVE
@ FRUSTUMMODE_ORTHOGRAPHIC
Matrix4x4 & computeProjectionMatrix()
Computes the projection matrix.
virtual void onUpdateProjectionMatrix(int contextIdx)=0
Update projection matrix event.
virtual void setViewPort(int32_t width, int32_t height)=0
Set up viewport parameter.
virtual void onUpdateCameraMatrix(int contextIdx)=0
Update camera matrix event.
Vector3 & getCameraPosition()
Matrix4x4 & getViewportMatrix()
Matrix4x4 & getProjectionMatrix()
virtual void updateViewPort()=0
Update viewport.
Matrix4x4 & getCameraMatrix()
virtual void onUpdateModelViewMatrix(int contextIdx)=0
Update model view matrix event.
Matrix4x4 & getModelViewMatrix()
Matrix4x4 & set(float r0c0, float r1c0, float r2c0, float r3c0, float r0c1, float r1c1, float r2c1, float r3c1, float r0c2, float r1c2, float r2c2, float r3c2, float r0c3, float r1c3, float r2c3, float r3c3)
Set up matrix by values.
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Vector3 & normalize()
Normalize the vector.
Vector3 & set(float x, float y, float z)
Set up vector.
Vector3 clone() const
Clones the vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & scale(float scale)
Scale this vector.