// // Created by Vlad on 4/18/2025. // #pragma once #include #include "omath/triangle.hpp" #include "omath/vector3.hpp" namespace omath::primitives { [[nodiscard]] std::array>, 12> create_box(const Vector3& top, const Vector3& bottom, const Vector3& dir_forward, const Vector3& dir_right, float ratio = 4.f) noexcept; }