Lugdunum
0.1.0
|
#include <Orthographic.hpp>
Public Member Functions | |
Orthographic (const Orthographic &)=delete | |
Orthographic (Orthographic &&)=delete | |
Orthographic & | operator= (const Orthographic &)=delete |
Orthographic & | operator= (Orthographic &&)=delete |
~Orthographic ()=default | |
float | getXMag () const |
void | setXMag (float xmag) |
float | getYMag () const |
void | setYMag (float ymag) |
Public Member Functions inherited from lug::Graphics::Render::Camera::Camera | |
Camera (const Camera &)=delete | |
Camera (Camera &&)=delete | |
Camera & | operator= (const Camera &)=delete |
Camera & | operator= (Camera &&)=delete |
virtual | ~Camera ()=default |
void | setZNear (float znear) |
Sets the znear (distance of near plane). More... | |
float | getZNear () const |
Gets the znear (distance of near plane). More... | |
void | setZFar (float zfar) |
Sets the zfar (distance of far plane). More... | |
float | getZFar () const |
Gets the zfar (distance of far plane) More... | |
const Math::Mat4x4f & | getProjectionMatrix () |
Gets the projection matrix. Computes it if needed, but internally the projection matrix is cached. More... | |
const Math::Mat4x4f & | getViewMatrix () |
Gets the view matrix. Computes it if needed, but internally the view matrix is cached. More... | |
void | update (const Renderer &renderer, const View &renderView, Queue &renderQueue) |
Update the render queue of the Camera by fetching the visible objects of the attached scene. More... | |
void | setRenderView (View *renderView) |
Scene::Node * | getParent () const |
void | setParent (Scene::Node *parent) |
void | needUpdateProj () |
void | needUpdateView () |
void | lookAt (const Math::Vec3f &targetPosition, const Math::Vec3f &up, Node::TransformSpace space=Node::TransformSpace::Local) |
Public Member Functions inherited from lug::Graphics::Resource | |
Resource (Type type, const std::string &name) | |
Resource (const Resource &)=delete | |
Resource (Resource &&)=delete | |
Resource & | operator= (const Resource &)=delete |
Resource & | operator= (Resource &&)=delete |
virtual | ~Resource ()=default |
Type | getType () const |
Returns the type of the Resource. More... | |
Handle | getHandle () const |
Returns the handle of the Resource. More... | |
const std::string & | getName () const |
Gets the name of the Resource. More... | |
void | setName (const std::string &name) |
Sets the name of the Resource. More... | |
Public Member Functions inherited from lug::Graphics::Render::DirtyObject | |
DirtyObject ()=default | |
DirtyObject (const DirtyObject &)=delete | |
DirtyObject (DirtyObject &&)=delete | |
DirtyObject & | operator= (const DirtyObject &)=delete |
DirtyObject & | operator= (DirtyObject &&)=delete |
~DirtyObject ()=default | |
void | setDirty () |
void | setDirty (uint32_t currentFrame) |
void | clearDirty () |
void | clearDirty (uint32_t currentFrame) |
bool | isDirty (uint32_t currentFrame) const |
bool | isDirty () const |
Protected Member Functions | |
Orthographic (const std::string &name) | |
void | updateProj () override final |
Protected Member Functions inherited from lug::Graphics::Render::Camera::Camera | |
Camera (const std::string &name) | |
void | updateView () |
Private Attributes | |
float | _xmag {0.0f} |
float | _ymag {0.0f} |
Friends | |
class | Builder::Camera |
Additional Inherited Members | |
Public Types inherited from lug::Graphics::Resource | |
enum | Type : uint8_t { Type::Scene, Type::SceneNode, Type::Material, Type::Mesh, Type::Light, Type::Texture, Type::Pipeline, Type::Camera, Type::SkyBox } |
Type of the resource. More... | |
Protected Attributes inherited from lug::Graphics::Render::Camera::Camera | |
Scene::Node * | _parent {nullptr} |
View * | _renderView {nullptr} |
float | _znear {0.1f} |
float | _zfar {100.0f} |
bool | _needUpdateProj {true} |
bool | _needUpdateView {true} |
Math::Mat4x4f | _projMatrix {Math::Mat4x4f::identity()} |
Math::Mat4x4f | _viewMatrix {Math::Mat4x4f::identity()} |
Protected Attributes inherited from lug::Graphics::Resource | |
std::string | _name |
Definition at line 15 of file Orthographic.hpp.
|
delete |
|
delete |
|
default |
|
explicitprotected |
Definition at line 11 of file Orthographic.cpp.
|
delete |
|
delete |
|
inline |
Definition at line 1 of file Orthographic.inl.
|
inline |
Definition at line 5 of file Orthographic.inl.
|
inline |
Definition at line 9 of file Orthographic.inl.
|
inline |
Definition at line 13 of file Orthographic.inl.
|
finaloverrideprotectedvirtual |
Implements lug::Graphics::Render::Camera::Camera.
Definition at line 13 of file Orthographic.cpp.
|
friend |
Definition at line 16 of file Orthographic.hpp.
|
private |
Definition at line 39 of file Orthographic.hpp.
|
private |
Definition at line 40 of file Orthographic.hpp.