mirror of
https://github.com/zhenyan121/Cubed.git
synced 2026-06-17 16:17:02 +08:00
11 lines
172 B
C++
11 lines
172 B
C++
#pragma once
|
|
#include <glm/glm.hpp>
|
|
|
|
namespace Cubed {
|
|
|
|
|
|
namespace Math {
|
|
void extract_frustum_planes(const glm::mat4& mvp_matrix, std::vector<glm::vec4>& planes);
|
|
}
|
|
|
|
} |