vengine  0.0.1
3D graphics engine
Loading...
Searching...
No Matches
ven::Camera Class Reference

Class for camera. More...

#include <Camera.hpp>

+ Collaboration diagram for ven::Camera:

Public Member Functions

 Camera (const float fov, const float near, const float far, const float moveSpeed, const float lookSpeed)
 
 ~Camera ()=default
 
 Camera (const Camera &)=delete
 
Cameraoperator= (const Camera &)=delete
 
 Camera (Camera &&)=default
 
Cameraoperator= (Camera &&)=default
 
void setOrthographicProjection (float left, float right, float top, float bottom, float near, float far)
 
void setPerspectiveProjection (float aspect)
 
void setViewDirection (glm::vec3 position, glm::vec3 direction, glm::vec3 up={0.F, -1.F, 0.F})
 
void setViewTarget (const glm::vec3 position, const glm::vec3 target, const glm::vec3 up={0.F, -1.F, 0.F})
 
void setViewXYZ (glm::vec3 position, glm::vec3 rotation)
 
void setFov (const float fov)
 
void setNear (const float near)
 
void setFar (const float far)
 
void setMoveSpeed (const float moveSpeed)
 
void setLookSpeed (const float lookSpeed)
 
const glm::mat4 & getProjection () const
 
const glm::mat4 & getView () const
 
const glm::mat4 & getInverseView () const
 
float getFov () const
 
float getNear () const
 
float getFar () const
 
float getMoveSpeed () const
 
float getLookSpeed () const
 

Public Attributes

Transform3D transform {DEFAULT_POSITION, {1.F, 1.F, 1.F}, DEFAULT_ROTATION}
 

Private Attributes

float m_fov
 
float m_near
 
float m_far
 
float m_moveSpeed
 
float m_lookSpeed
 
glm::mat4 m_projectionMatrix {1.F}
 
glm::mat4 m_viewMatrix {1.F}
 
glm::mat4 m_inverseViewMatrix {1.F}
 

Detailed Description

Class for camera.

Definition at line 28 of file Camera.hpp.

Constructor & Destructor Documentation

◆ Camera() [1/3]

ven::Camera::Camera ( const float fov,
const float near,
const float far,
const float moveSpeed,
const float lookSpeed )
inline

Definition at line 32 of file Camera.hpp.

◆ ~Camera()

ven::Camera::~Camera ( )
default

◆ Camera() [2/3]

ven::Camera::Camera ( const Camera & )
delete

◆ Camera() [3/3]

ven::Camera::Camera ( Camera && )
default

Member Function Documentation

◆ getFar()

float ven::Camera::getFar ( ) const
inlinenodiscard

Definition at line 56 of file Camera.hpp.

References m_far.

Referenced by ven::Gui::cameraSection().

+ Here is the caller graph for this function:

◆ getFov()

float ven::Camera::getFov ( ) const
inlinenodiscard

Definition at line 54 of file Camera.hpp.

References m_fov.

Referenced by ven::Gui::cameraSection().

+ Here is the caller graph for this function:

◆ getInverseView()

const glm::mat4 & ven::Camera::getInverseView ( ) const
inlinenodiscard

Definition at line 53 of file Camera.hpp.

References m_inverseViewMatrix.

◆ getLookSpeed()

float ven::Camera::getLookSpeed ( ) const
inlinenodiscard

Definition at line 58 of file Camera.hpp.

References m_lookSpeed.

Referenced by ven::Gui::cameraSection(), and ven::EventManager::moveCamera().

+ Here is the caller graph for this function:

◆ getMoveSpeed()

float ven::Camera::getMoveSpeed ( ) const
inlinenodiscard

Definition at line 57 of file Camera.hpp.

References m_moveSpeed.

Referenced by ven::Gui::cameraSection(), and ven::EventManager::moveCamera().

+ Here is the caller graph for this function:

◆ getNear()

float ven::Camera::getNear ( ) const
inlinenodiscard

Definition at line 55 of file Camera.hpp.

References m_near.

Referenced by ven::Gui::cameraSection().

+ Here is the caller graph for this function:

◆ getProjection()

const glm::mat4 & ven::Camera::getProjection ( ) const
inlinenodiscard

Definition at line 51 of file Camera.hpp.

References m_projectionMatrix.

◆ getView()

const glm::mat4 & ven::Camera::getView ( ) const
inlinenodiscard

Definition at line 52 of file Camera.hpp.

References m_viewMatrix.

◆ operator=() [1/2]

Camera & ven::Camera::operator= ( Camera && )
default

◆ operator=() [2/2]

Camera & ven::Camera::operator= ( const Camera & )
delete

◆ setFar()

void ven::Camera::setFar ( const float far)
inline

Definition at line 47 of file Camera.hpp.

References m_far.

Referenced by ven::Gui::cameraSection().

+ Here is the caller graph for this function:

◆ setFov()

void ven::Camera::setFov ( const float fov)
inline

Definition at line 45 of file Camera.hpp.

References m_fov.

Referenced by ven::Gui::cameraSection().

+ Here is the caller graph for this function:

◆ setLookSpeed()

void ven::Camera::setLookSpeed ( const float lookSpeed)
inline

Definition at line 49 of file Camera.hpp.

References m_lookSpeed.

Referenced by ven::Gui::cameraSection().

+ Here is the caller graph for this function:

◆ setMoveSpeed()

void ven::Camera::setMoveSpeed ( const float moveSpeed)
inline

Definition at line 48 of file Camera.hpp.

References m_moveSpeed.

Referenced by ven::Gui::cameraSection().

+ Here is the caller graph for this function:

◆ setNear()

void ven::Camera::setNear ( const float near)
inline

Definition at line 46 of file Camera.hpp.

References m_near.

Referenced by ven::Gui::cameraSection().

+ Here is the caller graph for this function:

◆ setOrthographicProjection()

void ven::Camera::setOrthographicProjection ( float left,
float right,
float top,
float bottom,
float near,
float far )

Definition at line 6 of file camera.cpp.

References m_projectionMatrix.

◆ setPerspectiveProjection()

void ven::Camera::setPerspectiveProjection ( float aspect)

Definition at line 17 of file camera.cpp.

◆ setViewDirection()

void ven::Camera::setViewDirection ( glm::vec3 position,
glm::vec3 direction,
glm::vec3 up = {0.F, -1.F, 0.F} )

Definition at line 29 of file camera.cpp.

◆ setViewTarget()

void ven::Camera::setViewTarget ( const glm::vec3 position,
const glm::vec3 target,
const glm::vec3 up = {0.F, -1.F, 0.F} )
inline

Definition at line 43 of file Camera.hpp.

◆ setViewXYZ()

void ven::Camera::setViewXYZ ( glm::vec3 position,
glm::vec3 rotation )

Definition at line 64 of file camera.cpp.

Member Data Documentation

◆ m_far

float ven::Camera::m_far
private

Definition at line 66 of file Camera.hpp.

Referenced by getFar(), and setFar().

◆ m_fov

float ven::Camera::m_fov
private

Definition at line 64 of file Camera.hpp.

Referenced by getFov(), and setFov().

◆ m_inverseViewMatrix

glm::mat4 ven::Camera::m_inverseViewMatrix {1.F}
private

Definition at line 71 of file Camera.hpp.

Referenced by getInverseView().

◆ m_lookSpeed

float ven::Camera::m_lookSpeed
private

Definition at line 68 of file Camera.hpp.

Referenced by getLookSpeed(), and setLookSpeed().

◆ m_moveSpeed

float ven::Camera::m_moveSpeed
private

Definition at line 67 of file Camera.hpp.

Referenced by getMoveSpeed(), and setMoveSpeed().

◆ m_near

float ven::Camera::m_near
private

Definition at line 65 of file Camera.hpp.

Referenced by getNear(), and setNear().

◆ m_projectionMatrix

glm::mat4 ven::Camera::m_projectionMatrix {1.F}
private

Definition at line 69 of file Camera.hpp.

Referenced by getProjection(), and setOrthographicProjection().

◆ m_viewMatrix

glm::mat4 ven::Camera::m_viewMatrix {1.F}
private

Definition at line 70 of file Camera.hpp.

Referenced by getView().

◆ transform

Transform3D ven::Camera::transform {DEFAULT_POSITION, {1.F, 1.F, 1.F}, DEFAULT_ROTATION}

Definition at line 60 of file Camera.hpp.

Referenced by ven::Gui::cameraSection(), and ven::EventManager::moveCamera().


The documentation for this class was generated from the following files: