added other collision types

This commit is contained in:
2025-11-09 22:39:09 +03:00
parent a6cf043d79
commit 44682b6f2c
11 changed files with 157 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
//
// Created by Vladislav on 09.11.2025.
//
#pragma once
#include <omath/engines/unreal_engine/constants.hpp>
#include <omath/engines/unreal_engine/formulas.hpp>
namespace omath::unreal_engine
{
class MeshTrait final
{
public:
[[nodiscard]]
static Mat4X4 rotation_matrix(const ViewAngles& rotation)
{
return unreal_engine::rotation_matrix(rotation);
}
};
} // namespace omath::unreal_engine