summaryrefslogtreecommitdiffhomepage
path: root/cheatsheet/raylib_models.c
diff options
context:
space:
mode:
authorPtitLuca <[email protected]>2021-06-18 11:07:13 +0200
committerGitHub <[email protected]>2021-06-18 11:07:13 +0200
commit0483b89b22f0ba3fce6c6e5751a567c8b5df8877 (patch)
treed21f69a19532aa166026edb9e603523d6c41328e /cheatsheet/raylib_models.c
parent41892992be9226d7a47b51b9ebf3118a9ee4934b (diff)
downloadraylib.com-0483b89b22f0ba3fce6c6e5751a567c8b5df8877.tar.gz
raylib.com-0483b89b22f0ba3fce6c6e5751a567c8b5df8877.zip
fix: change MeshBoundingBox to GetMeshBoundingBox
I'm currently working with collision for a school project. But I've found that the function's name to get the BoundingBox from a Mesh is not the correct one.
Diffstat (limited to 'cheatsheet/raylib_models.c')
-rw-r--r--cheatsheet/raylib_models.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cheatsheet/raylib_models.c b/cheatsheet/raylib_models.c
index f4721be..6e3c4bb 100644
--- a/cheatsheet/raylib_models.c
+++ b/cheatsheet/raylib_models.c
@@ -60,7 +60,7 @@
Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize); // Generate cubes-based map mesh from image data
// Mesh manipulation functions
- BoundingBox MeshBoundingBox(Mesh mesh); // Compute mesh bounding box limits
+ BoundingBox GetMeshBoundingBox(Mesh mesh); // Compute mesh bounding box limits
void MeshTangents(Mesh *mesh); // Compute mesh tangents
void MeshBinormals(Mesh *mesh); // Compute mesh binormals