mirror of
https://github.com/orange-cpp/omath.git
synced 2026-04-19 03:43:27 +00:00
16 lines
279 B
C++
16 lines
279 B
C++
//
|
|
// Created by Vlad on 03.09.2024.
|
|
//
|
|
|
|
#pragma once
|
|
#include <cstdint>
|
|
|
|
namespace omath::projection
|
|
{
|
|
enum class Error : uint16_t
|
|
{
|
|
WORLD_POSITION_IS_OUT_OF_SCREEN_BOUNDS,
|
|
INV_VIEW_PROJ_MAT_DET_EQ_ZERO,
|
|
PERSPECTIVE_DIVIDER_LESS_EQ_ZERO,
|
|
};
|
|
} |