Rest of mesh management functions.

This commit is contained in:
jussi
2022-05-25 21:52:36 +03:00
parent 44e8b06603
commit 06f9940682
12 changed files with 186 additions and 17 deletions

36
API.md
View File

@@ -3297,6 +3297,42 @@ NOTE: Currently only works on custom mesh
---
> success = RL_ExportMesh( Mesh mesh, string fileName )
Export mesh data to file, returns true on success
- Failure return false
- Success return true
---
> boundingBox = RL_GetMeshBoundingBox( Mesh mesh )
Compute mesh bounding box limits
- Failure return false
- Success return BoundingBox
---
> success = RL_GenMeshTangents( Mesh mesh )
Compute mesh tangents
- Failure return false
- Success return true
---
> success = RL_GenMeshBinormals( Mesh mesh )
Compute mesh binormals
- Failure return false
- Success return true
---
## Models - Material
---