diff options
| author | raysan5 <raysan5@gmail.com> | 2017-10-14 00:11:37 +0200 |
|---|---|---|
| committer | raysan5 <raysan5@gmail.com> | 2017-10-14 00:11:37 +0200 |
| commit | 9446746001fe0ae2255b901b03bdd835c21553ce (patch) | |
| tree | d63fba91d32b1ea8ca42b3cd5838f490d84e3480 /examples/models/models_mesh_picking.c | |
| parent | ea5f4eabf8900bec291bae5d3b444fbabd63cee4 (diff) | |
| download | raylib-9446746001fe0ae2255b901b03bdd835c21553ce.tar.gz raylib-9446746001fe0ae2255b901b03bdd835c21553ce.zip | |
Corrected issues on examples
Diffstat (limited to 'examples/models/models_mesh_picking.c')
| -rw-r--r-- | examples/models/models_mesh_picking.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/models/models_mesh_picking.c b/examples/models/models_mesh_picking.c index 2f54468a..e150fe92 100644 --- a/examples/models/models_mesh_picking.c +++ b/examples/models/models_mesh_picking.c @@ -89,7 +89,7 @@ int main() cursorColor = PURPLE; hitObjectName = "Triangle"; - bary = VectorBarycenter(nearestHit.position, ta, tb, tc); + bary = Vector3Barycenter(nearestHit.position, ta, tb, tc); hitTriangle = true; } else hitTriangle = false; |
