summaryrefslogtreecommitdiffhomepage
path: root/projects/Notepad++/raylib_npp_parser
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
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')
-rw-r--r--projects/Notepad++/raylib_npp_parser/raylib_npp.xml2
-rw-r--r--projects/Notepad++/raylib_npp_parser/raylib_to_parse.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/projects/Notepad++/raylib_npp_parser/raylib_npp.xml b/projects/Notepad++/raylib_npp_parser/raylib_npp.xml
index 2c8bafb5..b59fed57 100644
--- a/projects/Notepad++/raylib_npp_parser/raylib_npp.xml
+++ b/projects/Notepad++/raylib_npp_parser/raylib_npp.xml
@@ -2495,7 +2495,7 @@
</KeyWord>
<!-- Mesh manipulation functions -->
- <KeyWord name="MeshBoundingBox" func="yes">
+ <KeyWord name="GetMeshBoundingBox" func="yes">
<Overload retVal="BoundingBox" descr="Compute mesh bounding box limits">
<Param name="Mesh mesh" />
</Overload>
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