summaryrefslogtreecommitdiffhomepage
path: root/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
diff options
context:
space:
mode:
authorPtitLuca <[email protected]>2021-06-18 13:11:10 +0200
committerGitHub <[email protected]>2021-06-18 13:11:10 +0200
commitc37f776e87ff948ec81011a7707ad0fd59b3a0f0 (patch)
tree0f1f523caad3831bf0bf6f875d93b45de3c2533b /projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
parent1dd9fbae94cde2238e25df80958ea6edae6d5103 (diff)
downloadraylib-c37f776e87ff948ec81011a7707ad0fd59b3a0f0.tar.gz
raylib-c37f776e87ff948ec81011a7707ad0fd59b3a0f0.zip
fix: change relevant occurences of MeshBoundingBox to GetMeshBoundingBox (#1836)
Diffstat (limited to 'projects/Notepad++/raylib_npp_parser/raylib_to_parse.h')
-rw-r--r--projects/Notepad++/raylib_npp_parser/raylib_to_parse.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
index 8079f5c7..f7f25297 100644
--- a/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
+++ b/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h
@@ -515,7 +515,7 @@ RLAPI Mesh GenMeshHeightmap(Image heightmap, Vector3 size);
RLAPI Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize); // Generate cubes-based map mesh from image data
// Mesh manipulation functions
-RLAPI BoundingBox MeshBoundingBox(Mesh mesh); // Compute mesh bounding box limits
+RLAPI BoundingBox GetMeshBoundingBox(Mesh mesh); // Compute mesh bounding box limits
RLAPI void MeshTangents(Mesh *mesh); // Compute mesh tangents
RLAPI void MeshBinormals(Mesh *mesh); // Compute mesh binormals