mirror of
https://github.com/orange-cpp/omath.git
synced 2026-04-20 02:43:27 +00:00
11 lines
350 B
C++
11 lines
350 B
C++
//
|
|
// Created by Orange on 12/4/2024.
|
|
//
|
|
#pragma once
|
|
#include "omath/engines/source_engine/constants.hpp"
|
|
#include "omath/projection/camera.hpp"
|
|
#include "traits/camera_trait.hpp"
|
|
namespace omath::source_engine
|
|
{
|
|
using Camera = projection::Camera<Mat4X4, ViewAngles, CameraTrait, NDCDepthRange::ZERO_TO_ONE>;
|
|
} // namespace omath::source_engine
|