summaryrefslogtreecommitdiffhomepage
path: root/src/raylib.h
diff options
context:
space:
mode:
authorRay <[email protected]>2021-05-20 19:24:28 +0200
committerRay <[email protected]>2021-05-20 19:24:28 +0200
commite401d5c48e05efdd8b2cd9857df1f26b03299154 (patch)
tree1cb7dc5b89dc0003ed9137d8f6843125df711060 /src/raylib.h
parent9360e4e2c130767f58d787193de0b913bab8cddf (diff)
downloadraylib-e401d5c48e05efdd8b2cd9857df1f26b03299154.tar.gz
raylib-e401d5c48e05efdd8b2cd9857df1f26b03299154.zip
WARNING: RENAMED: MeshBoundingBox() -> GetMeshBoundingBox()
Renamed for consistency with other function in raylib.
Diffstat (limited to 'src/raylib.h')
-rw-r--r--src/raylib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h
index 51be68d7..916ea372 100644
--- a/src/raylib.h
+++ b/src/raylib.h
@@ -1433,7 +1433,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