瀏覽代碼

fix: change relevant occurences of MeshBoundingBox to GetMeshBoundingBox (#1836)

PtitLuca 4 年之前
父節點
當前提交
c37f776e87

+ 1 - 1
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);|
 GenMeshKnot|Mesh|(float radius, float size, int radSeg, int sides);|
 GenMeshHeightmap|Mesh|(Image heightmap, Vector3 size);|
 GenMeshHeightmap|Mesh|(Image heightmap, Vector3 size);|
 GenMeshCubicmap|Mesh|(Image cubicmap, Vector3 cubeSize);|
 GenMeshCubicmap|Mesh|(Image cubicmap, Vector3 cubeSize);|
-MeshBoundingBox|BoundingBox|(Mesh mesh);|
+GetMeshBoundingBox|BoundingBox|(Mesh mesh);|
 MeshTangents|void|(Mesh *mesh);|
 MeshTangents|void|(Mesh *mesh);|
 MeshBinormals|void|(Mesh *mesh);|
 MeshBinormals|void|(Mesh *mesh);|
 DrawModel|void|(Model model, Vector3 position, float scale, Color tint);|
 DrawModel|void|(Model model, Vector3 position, float scale, Color tint);|

+ 1 - 1
projects/Notepad++/c_raylib.xml

@@ -1549,7 +1549,7 @@
         </KeyWord>
         </KeyWord>
 
 
         <!-- Mesh manipulation functions -->
         <!-- Mesh manipulation functions -->
-        <KeyWord name="MeshBoundingBox" func="yes">
+        <KeyWord name="GetMeshBoundingBox" func="yes">
             <Overload retVal="BoundingBox" descr="Compute mesh bounding box limits">
             <Overload retVal="BoundingBox" descr="Compute mesh bounding box limits">
                 <Param name="Mesh mesh" />
                 <Param name="Mesh mesh" />
             </Overload>
             </Overload>

+ 1 - 1
projects/Notepad++/raylib_npp_parser/raylib_npp.xml

@@ -2495,7 +2495,7 @@
         </KeyWord>
         </KeyWord>
 
 
         <!-- Mesh manipulation functions -->
         <!-- Mesh manipulation functions -->
-        <KeyWord name="MeshBoundingBox" func="yes">
+        <KeyWord name="GetMeshBoundingBox" func="yes">
             <Overload retVal="BoundingBox" descr="Compute mesh bounding box limits">
             <Overload retVal="BoundingBox" descr="Compute mesh bounding box limits">
                 <Param name="Mesh mesh" />
                 <Param name="Mesh mesh" />
             </Overload>
             </Overload>

+ 1 - 1
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
 RLAPI Mesh GenMeshCubicmap(Image cubicmap, Vector3 cubeSize);                               // Generate cubes-based map mesh from image data
 
 
 // Mesh manipulation functions
 // 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 MeshTangents(Mesh *mesh);                                                        // Compute mesh tangents
 RLAPI void MeshBinormals(Mesh *mesh);                                                       // Compute mesh binormals
 RLAPI void MeshBinormals(Mesh *mesh);                                                       // Compute mesh binormals