Basic camera component.
More...
#include <Camera.h>
◆ Camera()
Construct a new Camera object.
- Parameters
-
self | The parent entity. |
properties | Camera properties. |
◆ CalculateFrustum()
auto nc::Camera::CalculateFrustum |
( |
| ) |
const -> Frustum |
|
noexcept |
Calculate the camera's viewport.
- Returns
- Frustum
◆ DisableUpdate()
virtual void nc::Camera::DisableUpdate |
( |
| ) |
|
|
inlinevirtualnoexcept |
Disable execution of the Run() method in the derived class.
- Note
- It is only necessary to implement this if the derived class has update logic running in a FrameLogic.
Reimplemented in nc::SceneNavigationCamera.
◆ EnableUpdate()
virtual void nc::Camera::EnableUpdate |
( |
| ) |
|
|
inlinevirtualnoexcept |
Enable execution of the Run() method in thhe derived class.
- Note
- It is only necessary to implement this if the derived class has update logic running in a FrameLogic.
Reimplemented in nc::SceneNavigationCamera.
◆ InverseProjectionMatrix()
auto nc::Camera::InverseProjectionMatrix |
( |
| ) |
const -> DirectX::FXMMATRIX |
|
inlinenoexcept |
Get the camera's inverse projection matrix.
- Returns
- DirectX::FXMMATRIX
◆ ProjectionMatrix()
auto nc::Camera::ProjectionMatrix |
( |
| ) |
const -> DirectX::FXMMATRIX |
|
inlinenoexcept |
Get the camera's projection matrix.
- Returns
- DirectX::FXMMATRIX
◆ UpdateProjectionMatrix()
virtual void nc::Camera::UpdateProjectionMatrix |
( |
float |
width, |
|
|
float |
height |
|
) |
| |
|
virtual |
Construct a new projection matrix based on input values.
- Parameters
-
width | Screen width |
height | Screen height |
◆ ViewMatrix()
auto nc::Camera::ViewMatrix |
( |
| ) |
const -> DirectX::FXMMATRIX |
|
inlinenoexcept |
Get the camera's view matrix.
- Returns
- DirectX::FXMMATRIX
The documentation for this class was generated from the following file: