mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
fix: change relevant occurences of MeshBoundingBox to GetMeshBoundingBox (#1836)
This commit is contained in:
@ -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>
|
||||
|
||||
@ -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>
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user