mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-14 07:23:26 +00:00
19 lines
432 B
C++
19 lines
432 B
C++
//
|
|
// Created by Vladislav on 09.11.2025.
|
|
//
|
|
#pragma once
|
|
#include <omath/engines/iw_engine/constants.hpp>
|
|
#include <omath/engines/iw_engine/formulas.hpp>
|
|
|
|
namespace omath::iw_engine
|
|
{
|
|
class MeshTrait final
|
|
{
|
|
public:
|
|
[[nodiscard]]
|
|
static Mat4X4 rotation_matrix(const ViewAngles& rotation)
|
|
{
|
|
return iw_engine::rotation_matrix(rotation);
|
|
}
|
|
};
|
|
} // namespace omath::iw_engine
|