summaryrefslogtreecommitdiff
path: root/API.md
diff options
context:
space:
mode:
authorjussi2022-05-25 21:52:36 +0300
committerjussi2022-05-25 21:52:36 +0300
commit06f99406824b8bb03db17029279a0d139808cf6c (patch)
treec0d8e4ae8b234c95a669fe609a7039cb07ada94b /API.md
parent44e8b06603d91d398c0955f34da33d0242b7551a (diff)
downloadreilua-enhanced-06f99406824b8bb03db17029279a0d139808cf6c.tar.gz
reilua-enhanced-06f99406824b8bb03db17029279a0d139808cf6c.tar.bz2
reilua-enhanced-06f99406824b8bb03db17029279a0d139808cf6c.zip
Rest of mesh management functions.
Diffstat (limited to 'API.md')
-rw-r--r--API.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/API.md b/API.md
index 976126d..e5528cd 100644
--- a/API.md
+++ b/API.md
@@ -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
---