mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-12 22:53:27 +00:00
17 lines
668 B
C++
17 lines
668 B
C++
//
|
|
// Created by Vladislav on 27.01.2026.
|
|
//
|
|
|
|
#pragma once
|
|
#include "mesh.hpp"
|
|
#include "omath/engines/frostbite_engine/traits/mesh_trait.hpp"
|
|
#include "omath/linear_algebra/vector3.hpp"
|
|
#include <array>
|
|
namespace omath::frostbite_engine
|
|
{
|
|
using BoxMesh = primitives::Mesh<Mat4X4, ViewAngles, MeshTrait, primitives::Vertex<>, std::array<Vector3<float>, 8>,
|
|
std::array<Vector3<std::uint32_t>, 12>>;
|
|
|
|
using PlaneMesh = primitives::Mesh<Mat4X4, ViewAngles, MeshTrait, primitives::Vertex<>,
|
|
std::array<Vector3<float>, 4>, std::array<Vector3<std::uint32_t>, 2>>;
|
|
} // namespace omath::frostbite_engine
|