Renamed ComputeVerticesAABB function to ComputeAABB

Former-commit-id: 5e8381f8d09f583f6ef9b2919b082f3418644bce
This commit is contained in:
Lynix
2015-01-26 17:20:27 +01:00
parent 8f101812c3
commit 025fdf6846
3 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
#include <Nazara/Utility/Debug.hpp>
template<typename T>
NzBoxf NzComputeVerticesAABB(const T* vertices, unsigned int vertexCount)
NzBoxf NzComputeAABB(const T* vertices, unsigned int vertexCount)
{
NzBoxf aabb;
if (vertexCount > 0)