Files
omath/tests/general/unit_test_primitive_box.cpp
2026-01-26 15:44:46 +03:00

11 lines
321 B
C++

//
// Created by Vladislav on 11.01.2026.
//
#include "omath/3d_primitives/box.hpp"
#include <gtest/gtest.h>
TEST(test, test)
{
auto result = omath::primitives::create_box({0.f, 30.f, 0.f}, {}, omath::opengl_engine::k_abs_forward,
omath::opengl_engine::k_abs_right);
}