mirror of
https://github.com/orange-cpp/omath.git
synced 2026-06-09 08:44:35 +00:00
0419043720
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
13 lines
359 B
C++
13 lines
359 B
C++
//
|
|
// Created by Vlad on 3/22/2025.
|
|
//
|
|
|
|
#pragma once
|
|
#include "omath/engines/frostbite_engine/constants.hpp"
|
|
#include "omath/projection/camera.hpp"
|
|
#include "traits/camera_trait.hpp"
|
|
|
|
namespace omath::frostbite_engine
|
|
{
|
|
using Camera = projection::Camera<Mat4X4, ViewAngles, CameraTrait, NDCDepthRange::ZERO_TO_ONE>;
|
|
} // namespace omath::frostbite_engine
|