mirror of
https://github.com/orange-cpp/omath.git
synced 2026-04-19 03:03:27 +00:00
12 lines
366 B
C++
12 lines
366 B
C++
//
|
|
// Created by Orange on 12/23/2024.
|
|
//
|
|
#pragma once
|
|
#include "omath/engines/opengl_engine/constants.hpp"
|
|
#include "omath/projection/camera.hpp"
|
|
#include "traits/camera_trait.hpp"
|
|
|
|
namespace omath::opengl_engine
|
|
{
|
|
using Camera = projection::Camera<Mat4X4, ViewAngles, CameraTrait, true, NDCDepthRange::NEGATIVE_ONE_TO_ONE>;
|
|
} // namespace omath::opengl_engine
|