summaryrefslogtreecommitdiffhomepage
path: root/projects
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
parent1dd9fbae94cde2238e25df80958ea6edae6d5103 (diff)
downloadraylib-c37f776e87ff948ec81011a7707ad0fd59b3a0f0.tar.gz
raylib-c37f776e87ff948ec81011a7707ad0fd59b3a0f0.zip
fix: change relevant occurences of MeshBoundingBox to GetMeshBoundingBox (#1836)
Diffstat (limited to 'projects')
-rw-r--r--projects/Geany/raylib.c.tags2
-rw-r--r--projects/Notepad++/c_raylib.xml2
-rw-r--r--projects/Notepad++/raylib_npp_parser/raylib_npp.xml2
-rw-r--r--projects/Notepad++/raylib_npp_parser/raylib_to_parse.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/projects/Geany/raylib.c.tags b/projects/Geany/raylib.c.tags
index 1b47efdd..78e6e724 100644
--- a/projects/Geany/raylib.c.tags
+++ b/projects/Geany/raylib.c.tags
@@ -298,7 +298,7 @@ GenMeshTorus|Mesh|(float radius, float size, int radSeg, int sides);|
GenMeshKnot|Mesh|(float radius, float size, int radSeg, int sides);|
GenMeshHeightmap|Mesh|(Image heightmap, Vector3 size);|
GenMeshCubicmap|Mesh|(Image cubicmap, Vector3 cubeSize);|
-MeshBoundingBox|BoundingBox|(Mesh mesh);|
+GetMeshBoundingBox|BoundingBox|(Mesh mesh);|
MeshTangents|void|(Mesh *mesh);|
MeshBinormals|void|(Mesh *mesh);|
DrawModel|void|(Model model, Vector3 position, float scale, Color tint);|
diff --git a/projects/Notepad++/c_raylib.xml b/projects/Notepad++/c_raylib.xml
index 8deab87e..497fb7b8 100644
--- a/projects/Notepad++/c_raylib.xml
+++ b/projects/Notepad++/c_raylib.xml
@@ -1549,7 +1549,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_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